Remove tests for Python 2.7

This commit is contained in:
Labrys of Knossos 2022-12-02 21:20:25 -05:00
commit 59232657cb
2 changed files with 2 additions and 5 deletions

View file

@ -13,8 +13,6 @@ jobs:
vmImage: 'Ubuntu-latest' vmImage: 'Ubuntu-latest'
strategy: strategy:
matrix: matrix:
Python27:
python.version: '2.7'
Python36: Python36:
python.version: '3.6' python.version: '3.6'
Python37: Python37:
@ -32,7 +30,7 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get install ffmpeg sudo apt-get install ffmpeg
displayName: 'Install ffmpeg' displayName: 'Install ffmpeg'
- task: UsePythonVersion@0 - task: UsePythonVersion@0
inputs: inputs:
versionSpec: '$(python.version)' versionSpec: '$(python.version)'

View file

@ -4,12 +4,11 @@
envlist = envlist =
clean, clean,
check, check,
{py27, py35, py36, py37}, {py35, py36, py37},
report report
[testenv] [testenv]
basepython = basepython =
py27: {env:TOXPYTHON:python2.7}
py35: {env:TOXPYTHON:python3.5} py35: {env:TOXPYTHON:python3.5}
py36: {env:TOXPYTHON:python3.6} py36: {env:TOXPYTHON:python3.6}
py37: {env:TOXPYTHON:python3.7} py37: {env:TOXPYTHON:python3.7}