Skip to content

Commit

Permalink
Fixed types in run_minimal_tests in noxfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben committed Nov 22, 2024
1 parent c36d74d commit f1a37e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ def run_minimal_tests(session: nox.Session, db_version: str):
"test_termination_handler.py",
],
"new-itest": ["test_cli_environment.py", "test_db_container_log_thread.py"],
"unit": "./test/unit",
"unit": ["./test/unit"],
}
session.run("pytest", minimal_tests["unit"]) #type: ignore
session.run("pytest", *minimal_tests["unit"])
for test in minimal_tests["new-itest"]:
session.run(
"pytest",
Expand Down

0 comments on commit f1a37e8

Please sign in to comment.