Skip to content

Commit

Permalink
adjust gitignore and travis settings
Browse files Browse the repository at this point in the history
  • Loading branch information
loechel committed Aug 10, 2017
1 parent a7e1d7d commit 6c4ffa0
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 11 deletions.
10 changes: 7 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
bin
develop-eggs
docs/_build
parts
dist
parts/
build/
_build/
reports/
dist/
*.pyc
*.pyo
*.egg-info
.eggs/
.installed.cfg
.tox
.tox/
include
lib/python2.7
.python-version
33 changes: 25 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,28 @@
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
sudo: false

cache:
pip: true

matrix:
include:
- python: "2.7"
env: TOXENV=flake8,isort
- python: "2.7"
env: TOXENV=py27
- python: "3.4"
env: TOXENV=py34
- python: "3.5"
env: TOXENV=py35
- python: "3.6"
env: TOXENV=py36

install:
- pip install flake8
- travis_retry pip install -U setuptools==33.1.1 tox coveralls coverage

script:
- flake8 lib setup.py
- python setup.py test
- travis_retry tox

after_success:
- coverage combine
- coveralls

0 comments on commit 6c4ffa0

Please sign in to comment.