From 6135a25b666e6c9810357d42196cc430c7443dd0 Mon Sep 17 00:00:00 2001 From: mjaworski Date: Tue, 10 Nov 2015 12:20:08 +0100 Subject: [PATCH] tox: update tox ini to not recurse into some dirs with py.test, bump patch version --- src/graceful/__init__.py | 2 +- tox.ini | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/graceful/__init__.py b/src/graceful/__init__.py index 964d018..725f06e 100644 --- a/src/graceful/__init__.py +++ b/src/graceful/__init__.py @@ -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 """ diff --git a/tox.ini b/tox.ini index 403f122..caa6cf0 100644 --- a/tox.ini +++ b/tox.ini @@ -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