Skip to content

Commit

Permalink
Run tests with --profile=dev which can catch some more Rust issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian committed Nov 4, 2024
1 parent 0417b56 commit 8e9a81c
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 @@ -29,7 +29,13 @@ def tests(session):
"""
Run the test suite with a corresponding Python version.
"""
session.install(ROOT, "-r", TESTS / "requirements.txt")
session.install(
"--config-settings",
"build-args=--profile=dev",
"--no-cache",
"-r",
REQUIREMENTS["tests"],
)

if session.posargs and session.posargs[0] == "coverage":
if len(session.posargs) > 1 and session.posargs[1] == "github":
Expand Down

0 comments on commit 8e9a81c

Please sign in to comment.