Skip to content

Commit

Permalink
Fix dependencies in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
marcwebbie committed Mar 28, 2024
1 parent 34243a5 commit 2396b44
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -e . -r requirements/test.txt
pip install toml coverage-lcov
- name: Run tests with coverage
- name: Run tests
run: |
pytest --cov=. --cov-report=term --cov-report=xml:coverage.xml --color=yes && coverage-lcov
pytest --color=yes
- name: Coveralls
uses: coverallsapp/github-action@master
with:
Expand Down Expand Up @@ -89,9 +88,10 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -e . -r requirements/test.txt
pip install toml coverage-lcov
- name: Run tests
run: |
pytest --color=yes
pytest --cov=. --cov-report=term --cov-report=xml:coverage.xml --color=yes && coverage-lcov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
Expand Down

0 comments on commit 2396b44

Please sign in to comment.