add pyproject.toml for testing

This commit is contained in:
Robert Kaussow 2019-01-28 22:46:08 +01:00
parent 02d4e04a63
commit 8eeb8efa6c
2 changed files with 5 additions and 4 deletions

View File

@ -10,7 +10,7 @@ steps:
PY_COLORS: "1"
commands:
- pip install tox -q
- tox -e $(tox -l | grep py27 | xargs | sed 's/ /,/g') -p all -q
- tox -e $(tox -l | grep py27 | xargs | sed 's/ /,/g') -q
when:
event:
- push
@ -23,7 +23,7 @@ steps:
PY_COLORS: "1"
commands:
- pip install tox -q
- tox -e $(tox -l | grep py35 | xargs | sed 's/ /,/g') -p all -q
- tox -e $(tox -l | grep py35 | xargs | sed 's/ /,/g') -q
when:
event:
- push
@ -36,7 +36,7 @@ steps:
PY_COLORS: "1"
commands:
- pip install tox -q
- tox -e $(tox -l | grep py36 | xargs | sed 's/ /,/g') -p all -q
- tox -e $(tox -l | grep py36 | xargs | sed 's/ /,/g') -q
when:
event:
- push
@ -49,7 +49,7 @@ steps:
PY_COLORS: "1"
commands:
- pip install tox -q
- tox -e $(tox -l | grep py37 | xargs | sed 's/ /,/g') -p all -q
- tox -e $(tox -l | grep py37 | xargs | sed 's/ /,/g') -q
when:
event:
- push

View File

@ -1,2 +1,3 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"