Skip to content

Commit

Permalink
Merge pull request #58 from data-exp-lab/workflow_update
Browse files Browse the repository at this point in the history
Use python -m pip everywhere in workflow
  • Loading branch information
matthewturk committed Nov 6, 2020
2 parents 9f44e67 + d4863c5 commit 8b4b1ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python_coverage_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools
pip install flake8 pytest pytest-cov codecov
if [ -f tests/test_requirements.txt ]; then pip install -r tests/test_requirements.txt; fi
pip install -e .
python -m pip install flake8 pytest pytest-cov codecov
if [ -f tests/test_requirements.txt ]; then python -m pip install -r tests/test_requirements.txt; fi
python -m pip install -e .
- name: Test with pytest and codecov
run: |
pytest --cov=widgyts --cov-report=xml widgyts
Expand Down

0 comments on commit 8b4b1ca

Please sign in to comment.