Skip to content

Commit

Permalink
disable cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Lee committed Mar 5, 2024
1 parent e3ed52c commit 30d45fb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- uses: actions/cache@v3
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}
# - uses: actions/cache@v3
# name: Define a cache for the virtual environment based on the dependencies lock file
# with:
# path: ./.venv
# key: venv-${{ hashFiles('poetry.lock') }}
- name: Install the project dependencies
run: poetry install --with test
- name: Run the automated tests (for example)
run: poetry run pytest -v
- name: Run unit tests
run: poetry run pytest tests -v

0 comments on commit 30d45fb

Please sign in to comment.