File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 4646 echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> "$GITHUB_ENV"
4747 - name : Generate coverage report
4848 run : |
49- pdm use --venv in-project
50- source .venv/bin/activate
51- coverage run --source=. -m runtests
52- coverage xml
49+ python -m coverage run --source=. -m runtests
50+ python -m coverage xml
5351 - name : Upload coverage to Codecov
5452 uses : codecov/codecov-action@v1
5553 with :
Original file line number Diff line number Diff line change 11# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
22# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
33#
4- # This version is customized to use the local flake8rc and test with unpythonic.setup.fixtures.
4+ # This version is customized to install with pdm, use the local flake8rc, and test with unpythonic.setup.fixtures.
55
66name : Python package
77
5353 echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> "$GITHUB_ENV"
5454 - name : Test with unpythonic.test.fixtures
5555 run : |
56- pdm use --venv in-project
57- source .venv/bin/activate
5856 python runtests.py
You can’t perform that action at this time.
0 commit comments