aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2020-12-19 21:05:17 +0000
committerMike Crute <mike@crute.us>2020-12-19 21:05:17 +0000
commit1af5836e5c1b727794916e2007aa96d757d0da80 (patch)
tree2f0b0be57a15254919e3d356d30b9a0331f0b4ce
parent95b3f19c042b8dd582a46c1b58e2b0c5e81f4d5b (diff)
downloadpydora-1af5836e5c1b727794916e2007aa96d757d0da80.tar.bz2
pydora-1af5836e5c1b727794916e2007aa96d757d0da80.tar.xz
pydora-1af5836e5c1b727794916e2007aa96d757d0da80.zip
Remove old test runner
-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__))