Skip to content

Commit 6f9b7ad

Browse files
committed
Fix for test.yml install
1 parent 81c896f commit 6f9b7ad

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
cache-dependency-path: pyproject.toml
2222
- name: Install dependencies
2323
run: |
24-
pip install . --group dev
24+
pip install --group dev
2525
- name: Run tests
2626
run: |
2727
pytest

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ jobs:
2424
cache-dependency-path: pyproject.toml
2525
- name: Install dependencies
2626
run: |
27-
pip install -e '.[test,mypy,flake8]'
28-
- name: Optionally install tui dependencies
29-
run: pip install -e '.[tui]'
27+
pip install --group dev
3028
- name: Optionally install numpy
3129
if: matrix.numpy == 1
3230
run: pip install numpy

0 commit comments

Comments
 (0)