Skip to content
This repository has been archived by the owner on Dec 1, 2018. It is now read-only.

Commit

Permalink
Added Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
brosner committed Mar 2, 2016
1 parent 616f4e5 commit 00369be
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
@@ -0,0 +1,13 @@
sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install tox coveralls
script:
- tox -e py${TRAVIS_PYTHON_VERSION//[.]/}
after_success:
- coveralls
3 changes: 0 additions & 3 deletions setup.cfg
@@ -1,5 +1,2 @@
[bdist_wheel]
universal = 1

[pep8]
ignore=E501
23 changes: 23 additions & 0 deletions tox.ini
@@ -0,0 +1,23 @@
[flake8]
ignore = E265,E501

[tox]
envlist =
py27,
py33,
py34,
py35

[testenv]
deps =
coverage == 4.0.2
flake8 == 2.5.0
pytest == 2.9.0
usedevelop = True
setenv =
LANG=en_US.UTF-8
LANGUAGE=en_US:en
LC_ALL=en_US.UTF-8
commands =
flake8 pykube
coverage run py.test

0 comments on commit 00369be

Please sign in to comment.