summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Neekman (AvidCoder) <un33kvu@gmail.com>2022-02-16 17:05:29 -0500
committerVal Neekman (AvidCoder) <un33kvu@gmail.com>2022-02-16 17:05:29 -0500
commit28ac37cd980e80c12bfa950d8680ff9d4826678f (patch)
tree4eae0282a94169030159e2069d701e5a1ffcf854
parent57ee951f7c1c0fe48a75b198031a98046ab458fc (diff)
downloadpython-slugify-28ac37cd980e80c12bfa950d8680ff9d4826678f.tar.gz
remove tox
-rw-r--r--.python-version5
-rw-r--r--test.py2
-rw-r--r--tox.ini18
3 files changed, 1 insertions, 24 deletions
diff --git a/.python-version b/.python-version
deleted file mode 100644
index a8733ab..0000000
--- a/.python-version
+++ /dev/null
@@ -1,5 +0,0 @@
-3.9.2
-3.8.8
-3.7.10
-3.6.13
-pypy3.7-7.3.3
diff --git a/test.py b/test.py
index 1cd56dc..752c499 100644
--- a/test.py
+++ b/test.py
@@ -9,7 +9,7 @@ from slugify import smart_truncate
from slugify.__main__ import slugify_params, parse_args
-class TestSlugification(unittest.TestCase):
+class TestSlugify(unittest.TestCase):
def test_extraneous_seperators(self):
diff --git a/tox.ini b/tox.ini
deleted file mode 100644
index a4bee82..0000000
--- a/tox.ini
+++ /dev/null
@@ -1,18 +0,0 @@
-[tox]
-envlist = py{39,38,37,36},pypy3
-
-[testenv]
-deps=
- -e .
-commands =
- python -m unittest test
-
-[testenv:format]
-deps = pycodestyle
-allowlist_externals = sh
-commands = sh format.sh
-
-[testenv:coverage]
-deps = coverage
-commands =
- coverage run --source=slugify test.py