Skip to content

Commit c8b4b38

Browse files
committed
updated github action workflow to use pip install .[dev] instead of requirements
1 parent 0f0f75f commit c8b4b38

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
python-version: '3.x'
1616
- name: Install dependencies
1717
run: |
18-
python -m pip install --upgrade pip
19-
pip install -r requirements.txt
18+
python3 -m pip install --upgrade pip setuptools
19+
pip install .[dev]
2020
- name: Run tests
2121
run: |
2222
pytest

0 commit comments

Comments
 (0)