Skip to content

Commit

Permalink
#75 (8)
Browse files Browse the repository at this point in the history
fix venv caching and check if sample data caching works
  • Loading branch information
dostuffthatmatters committed Aug 22, 2023
1 parent f4892dd commit 7704570
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/intensive-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:

# install poetry if venv not in cache
- name: Install Poetry
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
if: steps.cached-venv.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.6.1
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
if: steps.cached-venv.outputs.cache-hit != 'true'
run: poetry install --with=dev

# run test suite
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/quick-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:

# install poetry if venv not in cache
- name: Install Poetry
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
if: steps.cached-venv.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.6.1
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
if: steps.cached-venv.outputs.cache-hit != 'true'
run: poetry install --with=dev

# run test suite
Expand Down

0 comments on commit 7704570

Please sign in to comment.