summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorFederico Caselli <CaselIT@users.noreply.github.com>2021-10-27 18:02:39 +0200
committerGitHub <noreply@github.com>2021-10-27 18:02:39 +0200
commit1222900157502624f3c9774c81bac1e096ea88b0 (patch)
treea449a8bb94a3582674b1ea1d5624039cb2585f10 /tox.ini
parentcf605c0994149b1a1936b3a8a597203fe3fbb62e (diff)
downloadpython-mimeparse-1222900157502624f3c9774c81bac1e096ea88b0.tar.gz
chore: add github actions (#42)
* Add github actions Fixes: #39 * Fix workflow
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini30
1 files changed, 3 insertions, 27 deletions
diff --git a/tox.ini b/tox.ini
index 97c4794..ad40452 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,33 +1,9 @@
[tox]
-envlist = py37,py36,py35,py34,py32,py27,pypy,pypy3,flake8
+envlist = py
[testenv]
-commands = python --version
- ./mimeparse_test.py
-
-[testenv:py37]
-basepython = python3.7
-
-[testenv:py36]
-basepython = python3.6
-
-[testenv:py35]
-basepython = python3.5
-
-[testenv:py34]
-basepython = python3.4
-
-[testenv:py32]
-basepython = python3.2
-
-[testenv:py27]
-basepython = python2.7
-
-[testenv:pypy]
-basepython = pypy
-
-[testenv:pypy3]
-basepython = pypy3
+deps = pytest
+commands = pytest
[testenv:flake8]
deps = flake8