diff --git a/pyproject.toml b/pyproject.toml index 93b680c..9fc1977 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ omit = ["examples/*"] [tool.pytest.ini_options] addopts = ["--cov=.", "--no-cov-on-fail"] -python_files = ["ssb/tests/test_*.py"] +python_files = ["tests/test_*.py"] [build-system] requires = ["poetry-core"] diff --git a/ssb/tests/__init__.py b/tests/__init__.py similarity index 100% rename from ssb/tests/__init__.py rename to tests/__init__.py diff --git a/ssb/tests/test_feed.py b/tests/test_feed.py similarity index 100% rename from ssb/tests/test_feed.py rename to tests/test_feed.py diff --git a/ssb/tests/test_packet_stream.py b/tests/test_packet_stream.py similarity index 100% rename from ssb/tests/test_packet_stream.py rename to tests/test_packet_stream.py diff --git a/ssb/tests/test_util.py b/tests/test_util.py similarity index 100% rename from ssb/tests/test_util.py rename to tests/test_util.py