Skip to content

Commit 762af22

Browse files
committed
Make CI use pyproject
1 parent fd39b4c commit 762af22

2 files changed

Lines changed: 5 additions & 7 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ jobs:
1717
uses: actions/setup-python@v2
1818
with:
1919
python-version: ${{ matrix.python-version }}
20-
- name: Install dependencies
21-
run:
22-
python -m pip install pytest numpy
20+
- name: Install package and test dependencies
21+
run: |
22+
python -m pip install --upgrade pip
23+
python -m pip install --group dev .
24+
python -m pip install .
2325
- name: Test with pytest
2426
run:
2527
pytest -v

.travis.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)