Updating auto python tests

pull/15/head
Thorsten Sick 3 years ago
parent 0aef321609
commit 56002acd3d

@ -10,11 +10,19 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [ 3.7, 3.8, 3.9 ]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox
- name: Run check
run: make test
run: make check

@ -4,9 +4,14 @@
.PHONY: test init deinit shipit pylint
# This is for CI on Github
check: tox.ini
tox -e py
# Manual tests
test: tox.ini
tox;
# pylint --rcfile=pylint.rc *.py app/*.py plugins/base/*.py
pylint --rcfile=pylint.rc *.py app/*.py plugins/base/*.py
coverage html;
coverage report;

Loading…
Cancel
Save