We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bae0d7 commit 63a8959Copy full SHA for 63a8959
.github/workflows/tox_tests.yml
@@ -31,13 +31,17 @@ jobs:
31
run: |
32
python -VV
33
python -m site
34
- python -m pip install --upgrade pip setuptools wheel virtualenv tox tox-gh-actions cython
+ python -m pip install --upgrade pip setuptools wheel virtualenv tox tox-gh-actions cython pytest
35
36
- name: "Build CPP files using Cython"
37
38
sh -x update_cpp.sh
39
40
- - name: "Run tox targets for ${{ matrix.python-version }}"
+ - name: "Install DAWG for ${{ matrix.python-version }}"
41
42
- python -m tox
+ python setup.py install
43
+
44
+ - name: "Run tests for ${{ matrix.python-version }}"
45
+ run: |
46
+ python -m pytest
47
tox.ini
0 commit comments