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
Show file tree
Hide file tree
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
Add 3.12 to tox.ini
  • Loading branch information
hugovk committed Oct 9, 2023
commit 7c1c8927f13832fb302919eb5f5876d726e2ea6e
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ jobs:
- name: Tests
run: |
tox -e py
python3 -m coverage report
python3 -m coverage xml

- name: Upload coverage
uses: codecov/codecov-action@v3
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires =
tox>=4.2
env_list =
py{311, 310, 39, 38}
py{312, 311, 310, 39, 38}

[testenv]
pass_env =
Expand Down
0