summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kanakarakis <ivan.kanak@gmail.com>2019-06-17 00:40:05 +0200
committerGitHub <noreply@github.com>2019-06-17 00:40:05 +0200
commit643902dc9e08ce6820fb2287fdc6fc6b3aa96180 (patch)
treed5c0deeb73652283bbab7b0d2613299c30ed7875
parentd257d3054f36b4f3dfaba8b7394a2e8bab0aaf2e (diff)
parent648bc8299fe04519d86c8e632c073954d5569117 (diff)
downloadpysaml2-643902dc9e08ce6820fb2287fdc6fc6b3aa96180.tar.gz
Merge pull request #622 from c00kiemon5ter/feature-improve-ci
Add py37 as a test target
-rw-r--r--.travis.yml3
-rw-r--r--tox.ini5
2 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index f10268fc..87c541bc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,10 +1,13 @@
+dist: xenial
sudo: false
+
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
+ - 3.7
- pypy
- pypy3
diff --git a/tox.ini b/tox.ini
index d9dc9fe5..47d04407 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,6 +4,7 @@ envlist =
py34
py35
py36
+ py37
pypy
pypy3
@@ -15,8 +16,8 @@ whitelist_externals =
commands =
xmlsec1 --version
python --version
- py.test --version
+ pytest --version
tox --version
pip --version
pip freeze
- py.test --cov={envsitepackagesdir}/saml2 -v -rs {posargs:tests/}
+ pytest --cov={envsitepackagesdir}/saml2 -vvv -rs {posargs:tests/}