Skip to content

Commit

Permalink
test(nox): πŸ› Fix typo in script tests
Browse files Browse the repository at this point in the history
  • Loading branch information
teald committed Nov 5, 2024
1 parent 5e04dd7 commit 508b157
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 @@ -564,7 +564,7 @@ def dragons_dev_tests(session: nox.Session) -> None:
def unit_tests(session: nox.Session) -> None:
"""Run the unit tests."""
install_test_dependencies(session)
session.install("-e", ".")
session.install("-e", ".", "--no-deps")

# Positional arguments after -- are passed to pytest.
pos_args = session.posargs
Expand Down Expand Up @@ -771,7 +771,7 @@ def build_tests_integration(session):
def script_tests(session: nox.Session) -> None:
"""Run the script tests."""
install_test_dependencies(session)
session.install(".")
session.install("-e", ".", "--no-deps")

# Run the tests. Need to pass arguments to pytest.
session.run("pytest", "tests/script_tests", *session.posargs)
Expand Down

0 comments on commit 508b157

Please sign in to comment.