File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 4242 # https://stackoverflow.com/questions/74668349/how-to-activate-a-virtualenv-in-a-github-action
4343 echo "PATH=$PATH" >> "$GITHUB_ENV"
4444 echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> "$GITHUB_ENV"
45- echo "unset PYTHONHOME" >> "$GITHUB_ENV"
4645 - name : Generate coverage report
4746 run : |
47+ # coverage report
48+ # https://stackoverflow.com/questions/70137245/how-to-remove-an-environment-variable-on-github-actions
49+ unset PYTHONHOME
4850 coverage run --source=. -m runtests
4951 coverage xml
5052 - name : Upload coverage to Codecov
Original file line number Diff line number Diff line change 4949 # https://stackoverflow.com/questions/74668349/how-to-activate-a-virtualenv-in-a-github-action
5050 echo "PATH=$PATH" >> "$GITHUB_ENV"
5151 echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> "$GITHUB_ENV"
52- echo "unset PYTHONHOME" >> "$GITHUB_ENV"
5352 - name : Test with unpythonic.test.fixtures
5453 run : |
54+ # run the tests
55+ # https://stackoverflow.com/questions/70137245/how-to-remove-an-environment-variable-on-github-actions
56+ unset PYTHONHOME
5557 python runtests.py
You can’t perform that action at this time.
0 commit comments