From 20f8e36d8011c0f3573a96b57898b0a90a7df00f Mon Sep 17 00:00:00 2001 From: Ben Maddison Date: Thu, 6 May 2021 09:23:44 +0200 Subject: [PATCH] add tox config --- .gitignore | 1 + tox.ini | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 tox.ini diff --git a/.gitignore b/.gitignore index cfd99df..0bcd382 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # pycrate ASN.1 temporary test directory test_asn/ test_asn_todelete/ +.tox/ # special files cythonize_pycrate.py diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..fe40888 --- /dev/null +++ b/tox.ini @@ -0,0 +1,13 @@ +[tox] +envlist = py36,py37,py38,py39 + +[testenv] +passenv = TERM +commands = python setup.py test + +[gh-actions] +python = + 3.6: py36 + 3.7: py37 + 3.8: py38 + 3.9: py39