Skip to content

Commit

Permalink
ci: remove more python 3.7 traces
Browse files Browse the repository at this point in the history
  • Loading branch information
lyz-code committed Nov 23, 2023
1 parent 8dcb026 commit b23cb63
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,12 @@ jobs:
source .venv/bin/activate
pdm config python.use_venv True
make install
# 3.7 is giving me some issues with flake8 and importlib-metadata, until
# https://github.com/flakeheaven/flakeheaven/issues/132 is done, I won't spend
# time testing in this environment.
# https://github.com/lyz-code/mkdocs-newsletter/actions/runs/3548202587/jobs/5959150030
- name: Test linters
run: if [[ ${{ matrix.python-version }} != '3.7' ]];then make lint; fi
run: make lint
- name: Test type checkers
run: make mypy
# 3.7 is giving me some issues with flake8 and importlib-metadata, until
# https://github.com/flakeheaven/flakeheaven/issues/132 is done, I won't spend
# time testing in this environment.
# https://github.com/lyz-code/mkdocs-newsletter/actions/runs/3548202587/jobs/5959150030
- name: Test security
run: if [[ ${{ matrix.python-version }} != '3.7' ]];then make security; fi
run: make security
- name: Test with pytest
run: make test
- name: Upload Coverage
Expand Down

0 comments on commit b23cb63

Please sign in to comment.