aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.cfg3
-rw-r--r--tests/__init__.py6
2 files changed, 3 insertions, 6 deletions
diff --git a/setup.cfg b/setup.cfg
index c0735fc..980dea7 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -40,6 +40,9 @@ console_scripts =
40 pydora = pydora.player:main 40 pydora = pydora.player:main
41 pydora-configure = pydora.configure:main 41 pydora-configure = pydora.configure:main
42 42
43[tox:tox]
44# tox 3.19 just totally fails without this
45
43[testenv:format] 46[testenv:format]
44deps = 47deps =
45 black 48 black
diff --git a/tests/__init__.py b/tests/__init__.py
index 80793cf..e69de29 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -1,6 +0,0 @@
1import os
2from unittest import TestLoader
3
4
5def discover_suite():
6 return TestLoader().discover(os.path.dirname(__file__))