Skip to content

Commit

Permalink
Local test clean (#96)
Browse files Browse the repository at this point in the history
* Add ignores for working coverage/tox/IDE files.

* Allow tox not to fail if python version is not available.
  • Loading branch information
gollo authored and rytilahti committed Oct 7, 2017
1 parent 0b2e371 commit 44424c1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Compiled python modules.
__pycache__/
*.pyc

# Setuptools distribution folder.
/dist/
Expand All @@ -8,4 +9,20 @@ __pycache__/
/*.egg-info
/*.egg

# Coverage
.coverage

# Tox
.tox
.cache

# IntelliJ
.idea

# VirtualEnvs
venv
.venv

/build


1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[tox]
envlist=py33,py34,py35,py36,flake8
skip_missing_interpreters = True

[tox:travis]
2.7 = py27
Expand Down

0 comments on commit 44424c1

Please sign in to comment.