We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cbf269 commit aa75bc6Copy full SHA for aa75bc6
.github/workflows/run-tests.yml
@@ -59,15 +59,19 @@ jobs:
59
- name: Install alot's dependencies
60
run: |
61
sudo apt-get install -y gnupg2
62
- # apparently needed on github's images
63
- sudo apt-get install -y python3-wheel
64
65
python -m pip install --upgrade pip
66
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
67
68
- - name: Test with distutils
+ # - name: Test with distutils
+ # run: |
+ # python setup.py test
69
+ - name: Install dependencies
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
75
76
# TODO: test with different python versions
77
# TODO: test docs generation
0 commit comments