Skip to content

Commit 1d85d8f

Browse files
committed
Update test dependencies
1 parent 08c7efb commit 1d85d8f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
25-
pip install ruff pytest numpy setuptools>=66 wheel>=0.36 build
25+
pip install setuptools>=66 wheel>=0.36 build
2626
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
27-
if [ -f pyproject.toml ]; then pip install -e .; fi
27+
if [ -f pyproject.toml ]; then pip install -e .[dev]; fi
2828
2929
- name: Run Lint
3030
run: |
@@ -50,9 +50,9 @@ jobs:
5050
- name: Install dependencies
5151
run: |
5252
python -m pip install --upgrade pip
53-
pip install ruff pytest numpy setuptools>=66 wheel>=0.36 build
53+
pip install setuptools>=66 wheel>=0.36 build
5454
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
55-
if [ -f pyproject.toml ]; then pip install -e .; fi
55+
if [ -f pyproject.toml ]; then pip install -e .[dev]; fi
5656
5757
- name: Run Test
5858
run: |

0 commit comments

Comments
 (0)