Skip to content

Commit 3444690

Browse files
ci: remove poetry lock from ci commands and refactored to install exact requirements for that ci setup
1 parent 5a0b684 commit 3444690

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci_linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Install lint dependencies
3434
run: |
35-
make install
35+
poetry install --sync --no-interaction --with lint
3636
3737
- name: Run black
3838
run: poetry run black src

.github/workflows/ci_testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: Install test dependencies
3535
run: |
36-
make install
36+
poetry install --sync --no-interaction --with test
3737
3838
- name: Run pytest and coverage
3939
run: |

0 commit comments

Comments
 (0)