From: Mark Beierl Date: Thu, 14 Jul 2016 20:20:44 +0000 (-0400) Subject: Separation of test and source X-Git-Tag: colorado.1.0~3 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F25%2F16925%2F1;p=storperf.git Separation of test and source Moving the test files into their own top-level directory to keep things clean Change-Id: Ic50b881045bc59b003807923424345b335dd5c95 Signed-off-by: Mark Beierl --- diff --git a/ci/verify.sh b/ci/verify.sh index 89b1406..24aadac 100755 --- a/ci/verify.sh +++ b/ci/verify.sh @@ -52,7 +52,7 @@ nosetests --with-xunit \ --with-coverage \ --cover-package=storperf\ --cover-xml \ - storperf + tests rc=$? deactivate diff --git a/storperf/tests/__init__.py b/tests/__init__.py similarity index 100% rename from storperf/tests/__init__.py rename to tests/__init__.py diff --git a/storperf/tests/carbon_tests/__init__.py b/tests/carbon_tests/__init__.py similarity index 100% rename from storperf/tests/carbon_tests/__init__.py rename to tests/carbon_tests/__init__.py diff --git a/storperf/tests/carbon_tests/emitter_test.py b/tests/carbon_tests/emitter_test.py similarity index 100% rename from storperf/tests/carbon_tests/emitter_test.py rename to tests/carbon_tests/emitter_test.py diff --git a/storperf/tests/carbon_tests/json_to_carbon_test.py b/tests/carbon_tests/json_to_carbon_test.py similarity index 100% rename from storperf/tests/carbon_tests/json_to_carbon_test.py rename to tests/carbon_tests/json_to_carbon_test.py diff --git a/storperf/tests/db_tests/__init__.py b/tests/db_tests/__init__.py similarity index 100% rename from storperf/tests/db_tests/__init__.py rename to tests/db_tests/__init__.py diff --git a/storperf/tests/db_tests/configuration_db_test.py b/tests/db_tests/configuration_db_test.py similarity index 100% rename from storperf/tests/db_tests/configuration_db_test.py rename to tests/db_tests/configuration_db_test.py diff --git a/storperf/tests/db_tests/graphite_db_test.py b/tests/db_tests/graphite_db_test.py similarity index 100% rename from storperf/tests/db_tests/graphite_db_test.py rename to tests/db_tests/graphite_db_test.py diff --git a/storperf/tests/db_tests/job_db_test.py b/tests/db_tests/job_db_test.py similarity index 100% rename from storperf/tests/db_tests/job_db_test.py rename to tests/db_tests/job_db_test.py diff --git a/storperf/tests/storperf_master_test.py b/tests/storperf_master_test.py similarity index 100% rename from storperf/tests/storperf_master_test.py rename to tests/storperf_master_test.py diff --git a/storperf/tests/utilities/__init__.py b/tests/utilities_tests/__init__.py similarity index 100% rename from storperf/tests/utilities/__init__.py rename to tests/utilities_tests/__init__.py diff --git a/storperf/tests/utilities/dictionary_test.py b/tests/utilities_tests/dictionary_test.py similarity index 100% rename from storperf/tests/utilities/dictionary_test.py rename to tests/utilities_tests/dictionary_test.py diff --git a/storperf/tests/utilities/math_range_test.py b/tests/utilities_tests/math_range_test.py similarity index 100% rename from storperf/tests/utilities/math_range_test.py rename to tests/utilities_tests/math_range_test.py diff --git a/storperf/tests/utilities/math_slope_test.py b/tests/utilities_tests/math_slope_test.py similarity index 100% rename from storperf/tests/utilities/math_slope_test.py rename to tests/utilities_tests/math_slope_test.py diff --git a/storperf/tests/workload_tests/__init__.py b/tests/workload_tests/__init__.py similarity index 100% rename from storperf/tests/workload_tests/__init__.py rename to tests/workload_tests/__init__.py diff --git a/storperf/tests/workload_tests/workload_subclass_test.py b/tests/workload_tests/workload_subclass_test.py similarity index 100% rename from storperf/tests/workload_tests/workload_subclass_test.py rename to tests/workload_tests/workload_subclass_test.py