Skip to content

Commit

Permalink
tox: update tox ini to not recurse into some dirs with py.test, bump …
Browse files Browse the repository at this point in the history
…patch version
  • Loading branch information
swistakm committed Nov 10, 2015
1 parent d30e5fb commit 6135a25
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/graceful/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
VERSION = (0, 1, 0) # PEP 386 # noqa
VERSION = (0, 1, 1) # PEP 386 # noqa
__version__ = ".".join([str(x) for x in VERSION]) # noqa

"""
Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
[tox]
envlist = py33,py34,pep8,coverage-dev

[pytest]
norecursedirs = build lib .tox docs demo

[testenv]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
deps = -r{toxinidir}/requirements-tests.txt
setenv = VIRTUAL_ENV = {envdir}
# note: we test doctests to be sure that all examples are valid
# but they are not run later in coverage because they are only illustratory
commands = py.test --doctest-modules --ignore=setup.py --ignore docs --ignore demo {posargs}
commands = py.test --doctest-modules --ignore=setup.py {posargs}
sitepackages = False
downloadcache = {toxworkdir}/_download

Expand Down

0 comments on commit 6135a25

Please sign in to comment.