Skip to content

Commit baeb539

Browse files
committed
Give py2 support a brief stay of execution
As requested by @reaperhulk on IRC
1 parent f3acdde commit baeb539

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ jobs:
1010
matrix:
1111
PYTHON:
1212
# Base builds
13+
- {VERSION: "2.7", TOXENV: "py27"}
1314
- {VERSION: "3.6", TOXENV: "py36"}
1415
- {VERSION: "3.7", TOXENV: "py37"}
1516
- {VERSION: "3.8", TOXENV: "py38"}
1617
- {VERSION: "3.9", TOXENV: "py39"}
18+
- {VERSION: "pypy2", TOXENV: "pypy"}
1719
- {VERSION: "pypy3", TOXENV: "pypy3"}
1820
# -cryptographyMain
1921
- {VERSION: "3.6", TOXENV: "py36-cryptographyMain"}
@@ -26,8 +28,10 @@ jobs:
2628
- {VERSION: "3.7", TOXENV: "py37-cryptographyMinimum"}
2729
- {VERSION: "3.8", TOXENV: "py38-cryptographyMinimum"}
2830
- {VERSION: "3.9", TOXENV: "py39-cryptographyMinimum"}
31+
- {VERSION: "pypy2", TOXENV: "pypy-cryptographyMinimum"}
2932
- {VERSION: "pypy3", TOXENV: "pypy3-cryptographyMinimum"}
3033
# Random order
34+
- {VERSION: "2.7", TOXENV: "py27-randomorder"}
3135
- {VERSION: "3.9", TOXENV: "py39-randomorder"}
3236
# Downstreams
3337
- {VERSION: "3.7", TOXENV: "py37-twistedTrunk"}

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {pypy3,py36,py37,py38,py39}{,-cryptographyMain,-cryptographyMinimum}{,-randomorder},py37-twistedTrunk,pypi-readme,check-manifest,flake8,docs,coverage-report
2+
envlist = {pypy,pypy3,py27,py36,py37,py38,py39}{,-cryptographyMain,-cryptographyMinimum}{,-randomorder},py37-twistedTrunk,pypi-readme,check-manifest,flake8,docs,coverage-report
33

44
[testenv]
55
whitelist_externals =

0 commit comments

Comments
 (0)