diff --git a/.travis.yml b/.travis.yml index 55529bc6..24fa5b23 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,11 @@ language: python jobs: + allow_failures: + - name: devel + python: 3.8 + dist: xenial + env: TOXENV=devel + include: - stage: tests language: node_js @@ -41,6 +47,11 @@ jobs: sudo: required env: TOXENV=py37-ansi2html + - name: devel + python: 3.8 + dist: xenial + env: TOXENV=devel + - python: 3.8 env: TOXENV=py38-ansi2html diff --git a/tox.ini b/tox.ini index cada7ec0..9bd2cb41 100644 --- a/tox.ini +++ b/tox.ini @@ -21,6 +21,14 @@ basepython = python3 deps = pre-commit commands = pre-commit run --all-files --show-diff-on-failure +[testenv:devel] +description = Tests with unreleased deps +basepython = python3 +pip_pre = True +deps = + {[testenv]deps} + pytest @ git+https://github.com/pytest-dev/pytest.git + [flake8] max-line-length = 88 exclude = .eggs,.tox