From 75c3984c835a78b6340ea3cb187a494acc914117 Mon Sep 17 00:00:00 2001 From: Boris Pavlovic Date: Sun, 21 Aug 2016 18:52:44 -0700 Subject: [PATCH] Put in more propriate place test results Do not create a mess in root dir Change-Id: Idbefc340a3d8a6bed786637a7b52ff7283a6c6d7 --- .gitignore | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0fd4fda6..4c41b4dd 100644 --- a/.gitignore +++ b/.gitignore @@ -33,7 +33,7 @@ cover-master *.sqlite .venv .cache -pytest_results.html +.test_results/ # Docs doc/source/_build/ diff --git a/tox.ini b/tox.ini index 1bcf26d7..44057725 100644 --- a/tox.ini +++ b/tox.ini @@ -19,7 +19,7 @@ install_command = pip install -U {opts} {packages} usedevelop = True commands = find . -type f -name "*.pyc" -delete - py.test --html=pytest_results.html --durations=10 -n auto "tests/unit" {posargs} + py.test --html=.test_results/pytest_results.html --durations=10 -n auto "tests/unit" {posargs} distribute = false basepython = python2.7 passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY