Skip to content

Commit aa75bc6

Browse files
committed
tox?
1 parent 0cbf269 commit aa75bc6

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,19 @@ jobs:
5959
- name: Install alot's dependencies
6060
run: |
6161
sudo apt-get install -y gnupg2
62-
# apparently needed on github's images
63-
sudo apt-get install -y python3-wheel
6462
6563
python -m pip install --upgrade pip
6664
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
6765
68-
- name: Test with distutils
66+
# - name: Test with distutils
67+
# run: |
68+
# python setup.py test
69+
- name: Install dependencies
6970
run: |
70-
python setup.py test
71+
python -m pip install --upgrade pip
72+
pip install tox tox-gh-actions
73+
- name: Test with tox
74+
run: tox
7175

7276
# TODO: test with different python versions
7377
# TODO: test docs generation

0 commit comments

Comments
 (0)