diff --git a/.stestr.conf b/.stestr.conf index ea359ca..5fcccac 100644 --- a/.stestr.conf +++ b/.stestr.conf @@ -1,3 +1,3 @@ [DEFAULT] -test_path=./tests +test_path=./unit_tests top_dir=./ diff --git a/tox.ini b/tox.ini index 2af23d9..54ab5ee 100644 --- a/tox.ini +++ b/tox.ini @@ -54,4 +54,4 @@ commands = {posargs} basepython = python3 # Charmcraft builds with requirements-dev instead of test-requirements deps = -r{toxinidir}/requirements-dev.txt -commands = flake8 {posargs} src tests +commands = flake8 {posargs} src unit_tests diff --git a/tests/__init__.py b/unit_tests/__init__.py similarity index 100% rename from tests/__init__.py rename to unit_tests/__init__.py diff --git a/tests/test_charm.py b/unit_tests/test_charm.py similarity index 100% rename from tests/test_charm.py rename to unit_tests/test_charm.py