8000 Add tox.ini to easily test multiple Python versions by hugovk · Pull Request #343 · python/blurb_it · GitHub
[go: up one dir, main page]

Skip to content

Add tox.ini to easily test multiple Python versions #343

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Oct 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Call pytest to measure/report coverage of all module and test code
  • Loading branch information
hugovk committed Aug 22, 2023
commit 931a10e5dc885322ef7008349e8c63cac00444bf
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ pass_env =
commands_pre =
{envpython} -m pip install -U -r dev-requirements.txt
commands =
{envpython} -m coverage run --branch -m pytest tests/ {posargs}
{envpython} -m pytest --cov blurb_it --cov tests --cov-branch --cov-report html --cov-report term --cov-report xml {posargs}
0