Skip to content

Commit

Permalink
Pass args to hatch scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
aazuspan committed Jun 11, 2023
1 parent 17f11e9 commit 5de6d25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ dependencies = [
]

[tool.hatch.envs.test.scripts]
all = "pytest ."
local = "pytest . -m 'not ee'"
coverage = "pytest . --cov=wxee --cov-report=html"
all = "pytest . {args}"
local = "pytest . -m 'not ee' {args}"
coverage = "pytest . --cov=wxee --cov-report=html {args}"
view-coverage = "python -m webbrowser -t htmlcov/index.html"

[tool.pytest.ini_options]
Expand Down

0 comments on commit 5de6d25

Please sign in to comment.