Skip to content

Commit

Permalink
upgrade packages, drop support for older python versions (#137)
Browse files Browse the repository at this point in the history
* upgrade packages
* use pytest -rA for full report
* add python 3.12
  • Loading branch information
haarcuba committed Mar 21, 2024
1 parent b8141c9 commit 60cb2fa
Show file tree
Hide file tree
Showing 4 changed files with 240 additions and 261 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,11 @@ jobs:
strategy:
matrix:
python_version:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
name: Python-${{matrix.python_version}}
steps:
- name: setup python ${{matrix.python_version}}
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ end

desc "run unit tests"
task :units do
sh "python -m pytest --cov=testix/ --cov-report=term-missing --cov-report=html -sv test/"
sh "python -m pytest -rA --cov=testix/ --cov-report=term-missing --cov-report=html -sv test/"
end

desc "make sure we did not forget to include any tests"
Expand Down

0 comments on commit 60cb2fa

Please sign in to comment.