Local test clean (#96)

* Add ignores for working coverage/tox/IDE files.

* Allow tox not to fail if python version is not available.
This commit is contained in:
Sean Gollschewsky 2017-10-07 16:44:45 +01:00 committed by Teemu R
parent 0b2e371e79
commit 44424c1182
2 changed files with 18 additions and 0 deletions

17
.gitignore vendored
View File

@ -1,5 +1,6 @@
# Compiled python modules.
__pycache__/
*.pyc
# Setuptools distribution folder.
/dist/
@ -8,4 +9,20 @@ __pycache__/
/*.egg-info
/*.egg
# Coverage
.coverage
# Tox
.tox
.cache
# IntelliJ
.idea
# VirtualEnvs
venv
.venv
/build

View File

@ -1,5 +1,6 @@
[tox]
envlist=py33,py34,py35,py36,flake8
skip_missing_interpreters = True
[tox:travis]
2.7 = py27