Add tox and CI for interop

This commit is contained in:
mhchia
2019-08-28 23:39:33 +08:00
parent 34a4d7b0ed
commit b726d7c9da
10 changed files with 646 additions and 2 deletions

View File

@ -3,6 +3,7 @@
[tox]
envlist =
py37-test
py37-interop
lint
[flake8]
@ -26,10 +27,11 @@ skip_glob=
[testenv]
deps =
passenv = CI TRAVIS TRAVIS_*
passenv = CI TRAVIS TRAVIS_* GOPATH
extras = test
commands =
pytest tests/
test: py.test --ignore=tests/interop
interop: py.test tests/interop
basepython =
py37: python3.7