From 9db08ca9807103796b1d5af54c850afc6cc95f26 Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Sat, 1 Nov 2014 13:48:09 -0700 Subject: [PATCH] tox.ini: Tweak test discovery Replace `tests/` in `addopts` with `norecursedirs` Better to filter than to add in a default, so as not to force folks to always run all the tests. --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 02ab13b13..d154f0e56 100644 --- a/tox.ini +++ b/tox.ini @@ -25,4 +25,5 @@ deps = commands = flake8 {posargs} github3/ [pytest] -addopts = -q tests/ +addopts = -q +norecursedirs = *.egg .git .* _*