From 568b4e9129350b85d063349e17e5609c36b9db8c Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Sat, 6 Feb 2016 17:12:01 +0000 Subject: [PATCH] [tox.ini] use 'testpaths' to tell py.test where to look for tests this to avoid picking up undesired tests by accident when running `py.test` command without specific dirs or files --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index e048fc8f2..f977b8e2b 100644 --- a/tox.ini +++ b/tox.ini @@ -6,9 +6,11 @@ deps = pytest -rrequirements.txt commands = - py.test Lib/fontTools + py.test [pytest] +testpaths = + Lib/fontTools addopts = # run py.test in verbose mode -v