Skip to content

Commit

Permalink
Merge pull request #489 from bastelfreak/oooooooold
Browse files Browse the repository at this point in the history
drop python 2.6 from the testmatrix;  add python 3.7 to the testmatrix
  • Loading branch information
baurmatt committed Dec 24, 2018
2 parents 68e3554 + c80caca commit 5f4f8a3
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
dist: xenial
language: python

python:
- "2.6"
- "2.7"
- "3.5"
- "3.6"
- "3.7"

install:
- pip install -r requirements-test.txt
- pip install -q coveralls --use-wheel
- pip install -q coveralls
script:
- pytest --pep8
- if [ "${TRAVIS_PYTHON_VERSION}" != "2.6" ]; then
pip install bandit;
bandit -r puppetboard;
fi
- pip install bandit
- bandit -r puppetboard
after_success:
- coveralls
matrix:
allow_failures:
- python: "3.7"

0 comments on commit 5f4f8a3

Please sign in to comment.