Skip to content

Commit

Permalink
chore: run command with python -m
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron <[email protected]>
  • Loading branch information
aarnphm committed Jul 17, 2023
1 parent e5f49dd commit 32acc38
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 @@ -258,10 +258,10 @@ all = { composite = [
"monitoring",
"e2e",
] }
coverage-combine = "coverage combine {args}"
coverage-combine = "python -m coverage combine {args}"
coverage-generate-summary = "python tools/generate_coverage.py"
coverage-report-html = "coverage html --skip-covered --skip-empty"
coverage-report-xml = "coverage xml"
coverage-report-html = "python -m coverage html --skip-covered --skip-empty"
coverage-report-xml = "python -m coverage xml"
coverage-write-report = "python tools/write_report.py"

[tool.coverage.paths]
Expand Down

0 comments on commit 32acc38

Please sign in to comment.