Skip to content

Commit 5a33055

Browse files
committed
fix: requirement-dev
1 parent fd7db3e commit 5a33055

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.github/workflows/release-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install dependencies
2020
run: |
2121
python -m pip install --upgrade pip
22-
pip install pytest
22+
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
2323
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2424
- name: Run tests
2525
run: |
File renamed without changes.

0 commit comments

Comments
 (0)