Skip to content

Commit

Permalink
ci: typeguard needs freezegun
Browse files Browse the repository at this point in the history
  • Loading branch information
jantman committed Aug 10, 2024
1 parent 2dda1fb commit f4481b5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,13 @@ def coverage(session: Session) -> None:
def typeguard(session: Session) -> None:
"""Runtime type checking using Typeguard."""
session.install(".")
session.install("pytest", "typeguard", "pygments", "responses")
session.install(
"pytest",
"typeguard",
"pygments",
"responses",
"freezegun",
)
session.run(
"pytest",
f"--typeguard-packages={package}",
Expand Down

1 comment on commit f4481b5

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src/dm_mac
   __init__.py60100% 
   cli_utils.py150100% 
   neongetter.py1730100% 
   utils.py170100% 
src/dm_mac/models
   __init__.py00100% 
   machine.py69297%144, 151
   users.py380100% 
src/dm_mac/views
   __init__.py00100% 
   api.py50100% 
   machine.py10100%3–5, 7–8, 11, 14–15, 30, 37
TOTAL3331296% 

Tests Skipped Failures Errors Time
43 0 💤 0 ❌ 0 🔥 3.627s ⏱️

Please sign in to comment.