From cb7c16400cae922889d84772e9c321f049abeeec Mon Sep 17 00:00:00 2001 From: Bartosz Woronicz Date: Wed, 7 Apr 2021 14:30:20 +0200 Subject: [PATCH] rename tests -> unit_tests --- .stestr.conf | 2 +- tox.ini | 2 +- {tests => unit_tests}/__init__.py | 0 {tests => unit_tests}/test_charm.py | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename {tests => unit_tests}/__init__.py (100%) rename {tests => unit_tests}/test_charm.py (100%) 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