From 8b1f13bd33cf5d08e698fee815b216866a169d82 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 deprecated 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 e73da52bc..48b68d95c 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 \