Skip to content

Commit 453cbd8

Browse files
authored
tox/ci: remove testing with pytest's features branch (#509)
pytest is using the master branch now only.
1 parent bea6f66 commit 453cbd8

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

.appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ environment:
66
- TOXENV: "py37-pytestlatest"
77
- TOXENV: "py38-pytestlatest"
88
- TOXENV: "py38-pytestmaster"
9-
- TOXENV: "py38-pytestfeatures"
109

1110
install:
1211
- C:\Python38\python -m pip install -U pip setuptools virtualenv

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ jobs:
4444
env: TOXENV=py37-pytestlatest
4545
- python: "3.8"
4646
env: TOXENV=py38-pytestmaster
47-
- python: "3.8"
48-
env: TOXENV=py38-pytestfeatures
4947

5048
- stage: deploy
5149
python: '3.8'

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22
envlist=
33
linting
44
py{27,35,36,37,38}-pytestlatest
5-
py38-pytest{master,features}
5+
py38-pytestmaster
66

77
[testenv]
88
passenv = USER USERNAME
99
extras = testing
1010
deps =
1111
pytestlatest: pytest
1212
pytestmaster: git+https://github.com/pytest-dev/pytest.git@master
13-
pytestfeatures: git+https://github.com/pytest-dev/pytest.git@features
1413
commands=
1514
pytest {posargs}
1615

0 commit comments

Comments
 (0)