Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dokterbob committed Aug 28, 2024
1 parent cabd566 commit 06105ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
cache: poetry
cache-dependency-path: backend/poetry.lock
- name: Set Poetry environment
run: poetry -C ./backend env use 3.9
run: poetry -C ./backend env use '${{ steps.python.outputs.python-path }}'
- name: Install Python dependencies
run: poetry -C ./backend install --with tests
- name: Install JS dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mypy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
cache: poetry
cache-dependency-path: backend/poetry.lock
- name: Set Poetry environment
run: poetry env use 3.9
run: poetry env use '${{ steps.python.outputs.python-path }}'
- name: Install dependencies
run: poetry install --with tests --with mypy --with custom-data
- name: Run Mypy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
cache: poetry
cache-dependency-path: backend/poetry.lock
- name: Set Poetry environment
run: poetry env use ${{ matrix.python-version }}
run: poetry env use '${{ steps.python.outputs.python-path }}'
- name: Install dependencies
run: poetry install --with tests --with mypy --with custom-data
- name: Run Pytest
Expand Down

0 comments on commit 06105ec

Please sign in to comment.