From 580e7e5164d8430a86bd47f75362d6b5f6eddd0c Mon Sep 17 00:00:00 2001 From: Asif Tamuri Date: Mon, 31 Oct 2022 11:11:15 +0000 Subject: [PATCH] Remove tox pytest-travis plugin, which required deprecated pytest `py` lib - from pytest 7.2.0 changelog: pytest no longer depends on the py library...If you need other py.* modules, continue to install the deprecated py library separately, otherwise it can usually be removed as a dependency. - additional notes here https://github.com/pytest-dev/py/issues/288 --- MANIFEST.in | 2 +- tox.ini | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 520d3b037b..7b3ddb310e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,7 +6,7 @@ graft requirements include README.rst include .bumpversion.cfg include .coveragerc -include tox.ini .travis.yml +include tox.ini include tlo.example.conf exclude .editorconfig diff --git a/tox.ini b/tox.ini index 180e7ab3c4..cbdc5bb986 100644 --- a/tox.ini +++ b/tox.ini @@ -27,7 +27,6 @@ usedevelop = false deps = -r{toxinidir}/requirements/base.txt pytest - pytest-travis-fold pytest-cov commands = {posargs:pytest --cov --cov-report=term-missing -vv tests}