From c2a0b2222c8e978c88e0745d2fdba58f34a3df1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C5=A0oltis?= Date: Thu, 8 Aug 2024 11:36:17 +0200 Subject: [PATCH] tox: replace py.test with pytest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From pytest 3.0 supported and recommended way is to use of pytest as the main command instead of py.test It's possible that in future py.test will be deprecetead or potentially even removed [1] --- [1]: https://github.com/pytest-dev/pytest/issues/1629 Signed-off-by: Michal Ĺ oltis --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 6ef05cb1c..6c34a16dd 100644 --- a/tox.ini +++ b/tox.ini @@ -19,7 +19,7 @@ usedevelop = true deps = -rrequirements-extras.txt commands = - py.test \ + pytest \ --ignore=tests/integration \ --cov=cachi2 \ --cov-config=pyproject.toml \