From e82bdf4a84fa42dc6832232c9014e4619f998712 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Thu, 10 Jul 2014 20:29:31 +0200 Subject: [PATCH] Rename integration tests to unit tests, since they really only cover small parts of the system. --- tests/{integration => unit}/manifests_tests.py | 0 tests/{integration => unit}/subprocess.sh | 0 tests/{integration => unit}/tools_tests.py | 0 tox.ini | 4 ++-- 4 files changed, 2 insertions(+), 2 deletions(-) rename tests/{integration => unit}/manifests_tests.py (100%) rename tests/{integration => unit}/subprocess.sh (100%) rename tests/{integration => unit}/tools_tests.py (100%) diff --git a/tests/integration/manifests_tests.py b/tests/unit/manifests_tests.py similarity index 100% rename from tests/integration/manifests_tests.py rename to tests/unit/manifests_tests.py diff --git a/tests/integration/subprocess.sh b/tests/unit/subprocess.sh similarity index 100% rename from tests/integration/subprocess.sh rename to tests/unit/subprocess.sh diff --git a/tests/integration/tools_tests.py b/tests/unit/tools_tests.py similarity index 100% rename from tests/integration/tools_tests.py rename to tests/unit/tools_tests.py diff --git a/tox.ini b/tox.ini index 64ef939..999071f 100644 --- a/tox.ini +++ b/tox.ini @@ -9,11 +9,11 @@ envlist = flake8, integration deps = flake8 commands = flake8 bootstrapvz/ --exclude=minify_json.py -[testenv:integration] +[testenv:unit] deps = nose nose-cov -commands = nosetests -v tests/integration --with-coverage --cover-package=bootstrapvz --cover-inclusive +commands = nosetests -v tests/unit --with-coverage --cover-package=bootstrapvz --cover-inclusive [testenv:docs] changedir = docs