From 03dba52b047dd099ed385d31917456a817c817de Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 4 Jun 2025 00:54:44 +0900 Subject: [PATCH] Fix test command to run unit tests It should have been updated when nose was replaced by nose2[1]. [1] 9ac3272d2b30fdd956f3bcc12a94083211f20a55 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index bf7ac72..8c629cf 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,7 @@ envlist = py3 [testenv] -commands = nosetests {posargs} +commands = nose2 {posargs} deps = -r{toxinidir}/test-requirements.txt # At some point we should enable this since tox expects it to exist but