Skip to content

Commit

Permalink
removing cache from pytest workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
earth-chris committed Sep 11, 2023
1 parent 81a5d7e commit abf66ba
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/run-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov pytest-xdist -r requirements.txt
pip install .
pip install poetry==1.1.13
poetry install
- name: Run pytest
run: |
pytest -n auto --cov --no-cov-on-fail --cov-report=term-missing:skip-covered --cov-report xml:coverage.xml

0 comments on commit abf66ba

Please sign in to comment.