From 1222900157502624f3c9774c81bac1e096ea88b0 Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Wed, 27 Oct 2021 18:02:39 +0200 Subject: chore: add github actions (#42) * Add github actions Fixes: #39 * Fix workflow --- tox.ini | 30 +++--------------------------- 1 file changed, 3 insertions(+), 27 deletions(-) (limited to 'tox.ini') 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 -- cgit v1.2.1