diff --git a/.appveyor.yml b/.appveyor.yml index a275120..36c98c1 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -6,7 +6,6 @@ environment: - TOXENV: "py37-pytestlatest" - TOXENV: "py38-pytestlatest" - TOXENV: "py38-pytestmaster" - - TOXENV: "py38-pytestfeatures" install: - C:\Python38\python -m pip install -U pip setuptools virtualenv diff --git a/.travis.yml b/.travis.yml index 3b25db0..8932051 100644 --- a/.travis.yml +++ b/.travis.yml @@ -44,8 +44,6 @@ jobs: env: TOXENV=py37-pytestlatest - python: "3.8" env: TOXENV=py38-pytestmaster - - python: "3.8" - env: TOXENV=py38-pytestfeatures - stage: deploy python: '3.8' diff --git a/tox.ini b/tox.ini index 98e0bd1..a68913a 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ envlist= linting py{27,35,36,37,38}-pytestlatest - py38-pytest{master,features} + py38-pytestmaster [testenv] passenv = USER USERNAME @@ -10,7 +10,6 @@ extras = testing deps = pytestlatest: pytest pytestmaster: git+https://github.com/pytest-dev/pytest.git@master - pytestfeatures: git+https://github.com/pytest-dev/pytest.git@features commands= pytest {posargs}