tox/ci: remove testing with pytest's features branch (#509)

pytest is using the master branch now only.
This commit is contained in:
Daniel Hahler
2020-03-31 11:11:05 +02:00
committed by GitHub
parent bea6f66174
commit 453cbd88dd
3 changed files with 1 additions and 5 deletions

View File

@@ -6,7 +6,6 @@ environment:
- TOXENV: "py37-pytestlatest" - TOXENV: "py37-pytestlatest"
- TOXENV: "py38-pytestlatest" - TOXENV: "py38-pytestlatest"
- TOXENV: "py38-pytestmaster" - TOXENV: "py38-pytestmaster"
- TOXENV: "py38-pytestfeatures"
install: install:
- C:\Python38\python -m pip install -U pip setuptools virtualenv - C:\Python38\python -m pip install -U pip setuptools virtualenv

View File

@@ -44,8 +44,6 @@ jobs:
env: TOXENV=py37-pytestlatest env: TOXENV=py37-pytestlatest
- python: "3.8" - python: "3.8"
env: TOXENV=py38-pytestmaster env: TOXENV=py38-pytestmaster
- python: "3.8"
env: TOXENV=py38-pytestfeatures
- stage: deploy - stage: deploy
python: '3.8' python: '3.8'

View File

@@ -2,7 +2,7 @@
envlist= envlist=
linting linting
py{27,35,36,37,38}-pytestlatest py{27,35,36,37,38}-pytestlatest
py38-pytest{master,features} py38-pytestmaster
[testenv] [testenv]
passenv = USER USERNAME passenv = USER USERNAME
@@ -10,7 +10,6 @@ extras = testing
deps = deps =
pytestlatest: pytest pytestlatest: pytest
pytestmaster: git+https://github.com/pytest-dev/pytest.git@master pytestmaster: git+https://github.com/pytest-dev/pytest.git@master
pytestfeatures: git+https://github.com/pytest-dev/pytest.git@features
commands= commands=
pytest {posargs} pytest {posargs}