summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDylan Baker <baker.dylan.c@gmail.com>2015-12-17 15:18:10 -0800
committerDylan Baker <baker.dylan.c@gmail.com>2016-01-08 12:25:21 -0800
commitc45a23f236d6e24631d7eafba60456bf72181256 (patch)
tree666e863380de8cb7139277df0cabf6695cc6dac4 /tox.ini
parent848a5cbeeb777876eaf431f48e93b02ee520863e (diff)
unittests: move framework/tests to unittests
Currently the framework is pretty confusing. There's 'test' which is a package containing test classes, then there's 'tests' which contains unit tests for the framework. This is obviously not optimal. Beyond that the unittests get installed, and that isn't really necessary. As a bonus this removes the unit tests from coverage reports, which is a nice plus. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index cea28ac96..663b38f74 100644
--- a/tox.ini
+++ b/tox.ini
@@ -17,7 +17,7 @@ deps =
nose
coverage
mock
-commands = nosetests framework/tests --cover-package=framework --cover-tests
+commands = nosetests unittests --cover-package=framework --cover-tests
[testenv:py27-accel]
passenv=HOME
@@ -29,4 +29,4 @@ deps =
simplejson
lxml
backports.lzma
-commands = nosetests framework/tests --with-cover --cover-package=framework --cover-tests
+commands = nosetests unittests --with-cover --cover-package=framework --cover-tests