From edd2185268cdc1fca15710674ad3d10fbf92ee35 Mon Sep 17 00:00:00 2001 From: "James R. Barlow" Date: Tue, 16 Feb 2016 05:44:55 -0800 Subject: [PATCH] Fix pytest-runner not understanding 'norecursedirs' As discussed here https://github.com/pytest-dev/pytest-runner/issues/7 and sort of https://github.com/pytest-dev/pytest/issues/567 --- pytest.ini | 2 ++ setup.cfg | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 00000000..f58bcdeb --- /dev/null +++ b/pytest.ini @@ -0,0 +1,2 @@ +[pytest] +norecursedirs = lib \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 71efa7b4..cee7e31d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,4 @@ [bdist_wheel] python-tag = py34 -[pytest] -norecursedirs = lib [aliases] test=pytest \ No newline at end of file