From 12a224a3ffdcae2f23c8a0e0509bab60f211cbbf Mon Sep 17 00:00:00 2001 From: Eduardo Schettino Date: Fri, 8 May 2015 15:34:14 +0800 Subject: [PATCH] fix tox. include dependencies --- CHANGES | 5 +++++ pytest_incremental.py | 2 +- setup.py | 2 +- tox.ini | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 3b78d95..da41d6d 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,11 @@ Changes ======= +0.4.2 (*2015-05-08*) +==================== + +- fix tox. include dependencies + 0.4.1 (*2015-05-08*) ==================== diff --git a/pytest_incremental.py b/pytest_incremental.py index 51089f9..c74f863 100644 --- a/pytest_incremental.py +++ b/pytest_incremental.py @@ -9,7 +9,7 @@ from __future__ import print_function from __future__ import unicode_literals -__version__ = (0, 4, 1) +__version__ = (0, 4, 2) import os import ast diff --git a/setup.py b/setup.py index 588c2aa..2dd8867 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup(name = 'pytest-incremental', description = 'an incremental test runner (pytest plugin)', - version = '0.4.1', + version = '0.4.2', license = 'MIT', author = 'Eduardo Naufel Schettino', author_email = 'schettino72@gmail.com', diff --git a/tox.ini b/tox.ini index cfd0232..947d345 100644 --- a/tox.ini +++ b/tox.ini @@ -8,4 +8,4 @@ envlist = py27,py34 [testenv] commands = py.test - +deps = pytest-xdist