From a337e547ec5b9a72b820284665774c97f0a9996e Mon Sep 17 00:00:00 2001 From: EvB Date: Wed, 28 Dec 2016 14:40:08 -0500 Subject: [PATCH] chore(Dockerfile): run tests in all dirs --- Dockerfile | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 70fdbb775..7eef97df3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -159,7 +159,7 @@ RUN if [ "$RUN_TESTS" = true ]; then \ RUN if [ "$RUN_TESTS" = true ]; then \ TEST=true PYTHONPATH="." venv/bin/py.test --timeout=3600 --verbose \ - --show-count -x --color=no test; \ + --show-count -x --color=no; \ fi RUN if [ "$RUN_TESTS" = true ]; then \ diff --git a/setup.cfg b/setup.cfg index 7d9e70054..2fe4ff0bd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [tool:pytest] norecursedirs = .* *.egg build dist docs -testpaths = test +testpaths = ./ confcutdir = test [coverage:run]