Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit 8f96703

Browse files
authored
Enable testing with py36 and py39 (#68)
We run GitHub CI testing with both minimal an maximal versions of supported Python.
1 parent 9a31953 commit 8f96703

File tree

3 files changed

+8
-22
lines changed

3 files changed

+8
-22
lines changed

.github/workflows/tox.yml

+5-20
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,11 @@ jobs:
2323
matrix:
2424
include:
2525
- tox_env: lint
26-
# - tox_env: docs
27-
# - tox_env: py36
28-
# PREFIX: PYTEST_REQPASS=433
29-
# - tox_env: py37
30-
# PREFIX: PYTEST_REQPASS=433
31-
- tox_env: py38
32-
PREFIX: PYTEST_REQPASS=433
33-
# - tox_env: py39
34-
# PREFIX: PYTEST_REQPASS=433
35-
# - tox_env: packaging
36-
# - tox_env: dockerfile
37-
# - tox_env: build-containers
38-
# needs:
39-
# - dockerfile
40-
# - docs
41-
# - lint
42-
# - packaging
43-
# - py36
44-
# - py37
45-
# - py38
26+
- tox_env: py36
27+
PREFIX: PYTEST_REQPASS=5
28+
- tox_env: py39
29+
PREFIX: PYTEST_REQPASS=5
30+
- tox_env: packaging
4631

4732
steps:
4833
- name: Check vagrant presence

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ classifiers =
3535
Programming Language :: Python :: 3.6
3636
Programming Language :: Python :: 3.7
3737
Programming Language :: Python :: 3.8
38+
Programming Language :: Python :: 3.9
3839

3940
Topic :: System :: Systems Administration
4041
Topic :: Utilities

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# For more information about tox, see https://tox.readthedocs.io/en/latest/
22
[tox]
33
minversion = 3.9.0
4-
envlist = lint,packaging,py36,py37,py38,devel,distros
4+
envlist = lint,packaging,py{36,37,38,39},devel,distros
55
skipsdist = True
66
skip_missing_interpreters = True
77
isolated_build = True
@@ -43,7 +43,7 @@ passenv =
4343
CURL_CA_BUNDLE
4444
DOCKER_*
4545
HOME
46-
PYTEST_OPTIONS
46+
PYTEST_*
4747
REQUESTS_CA_BUNDLE
4848
SSH_AUTH_SOCK
4949
SSL_CERT_FILE

0 commit comments

Comments
 (0)