We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd39b4c commit 762af22Copy full SHA for 762af22
2 files changed
.github/workflows/run-tests.yml
@@ -17,9 +17,11 @@ jobs:
17
uses: actions/setup-python@v2
18
with:
19
python-version: ${{ matrix.python-version }}
20
- - name: Install dependencies
21
- run:
22
- python -m pip install pytest numpy
+ - name: Install package and test dependencies
+ run: |
+ python -m pip install --upgrade pip
23
+ python -m pip install --group dev .
24
+ python -m pip install .
25
- name: Test with pytest
26
run:
27
pytest -v
.travis.yml
0 commit comments