Skip to content

Commit

Permalink
Merge 077753a into 5fb248a
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie256 committed Apr 6, 2022
2 parents 5fb248a + 077753a commit 98228b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/python-continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,12 @@ jobs:
with:
version: '3.19.4'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache Python dependencies
- name: Set up Poetry cache for Python dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }}
restore-keys: |
${{ runner.os }}-pip-
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
restore-keys: ${{ runner.os }}-poetry-
- name: Install dependencies
run: make install
- name: Run build, style, and lint checks
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ test-notebooks: ## Run tests for the notebooks

install: ## Install all dependencies with poetry.
@$(call i, Installing dependencies)
$(source HOME/.poetry/env)
poetry install

coverage: ## Generate test coverage reports.
Expand Down

0 comments on commit 98228b8

Please sign in to comment.