Skip to content

Commit

Permalink
#190: Add --without-hashes options to poetry export cmd
Browse files Browse the repository at this point in the history
- This commit also adds the "tests" session to the list of Nox sessions
  • Loading branch information
MRichards99 committed Jan 5, 2021
1 parent 73bb72d commit fb3900b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import nox

# Separating Black away from the rest of the sessions
nox.options.sessions = "lint", "safety"
nox.options.sessions = "lint", "safety", "tests"
code_locations = "datagateway_api", "test", "util", "noxfile.py"


Expand All @@ -14,6 +14,7 @@ def install_with_constraints(session, req_dir=None, *args, **kwargs):
"export",
"--dev",
"--format=requirements.txt",
"--without-hashes",
f"--output={requirements.name}",
external=True,
)
Expand Down

0 comments on commit fb3900b

Please sign in to comment.