summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Neekman (AvidCoder) <un33kvu@gmail.com>2022-02-16 17:11:23 -0500
committerVal Neekman (AvidCoder) <un33kvu@gmail.com>2022-02-16 17:11:23 -0500
commitbfb5170094e8065fcb113e32936ea356f7f420a2 (patch)
treee394dd2321b05ad2ac52089c510c33172f250703
parent8ea91da9f4c5e4ba12912ad2dff804abc4045e10 (diff)
downloadpython-slugify-bfb5170094e8065fcb113e32936ea356f7f420a2.tar.gz
clean up
-rw-r--r--.python-version5
-rw-r--r--README.md4
-rw-r--r--test.py2
-rw-r--r--tox.ini18
4 files changed, 1 insertions, 28 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/README.md b/README.md
index 5476fbe..af10080 100644
--- a/README.md
+++ b/README.md
@@ -164,10 +164,6 @@ quick-brown-fox-jumps-over-lazy-dog
# Running the tests
-To run the tests against all environments:
-
- tox
-
To run the tests against the current environment:
python test.py
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