switch to GitHub actions for builds

This commit is contained in:
Miguel Grinberg
2021-02-06 11:23:08 +00:00
parent 125af4b4a9
commit 4c0afa2bec
6 changed files with 67 additions and 30 deletions

16
tox.ini
View File

@@ -3,21 +3,21 @@ envlist=flake8,py36,py37,py38,py39,upy
skipsdist=True
skip_missing_interpreters=True
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
pypy3: pypy3
[testenv]
commands=
pip install -e microdot
pip install -e microdot-asyncio
coverage run --branch --include="microdot*.py" -m unittest tests
coverage report --show-missing
coverage erase
deps=coverage
basepython=
flake8: python3.8
py36: python3.6
py37: python3.7
py38: python3.8
py39: python3.9
upy: python3.8
[testenv:flake8]
deps=