From c24fbbce94bb50af257ff56440b542e6ff9f08d2 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 4 Jun 2025 00:51:46 +0900 Subject: [PATCH 1/2] tox: Update default env Support for python 3.4 was removed long time ago. Use py3, which may be translated to the default system python for convenience. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 526eff6..bf7ac72 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py34 +envlist = py3 [testenv] commands = nosetests {posargs} From 03dba52b047dd099ed385d31917456a817c817de Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 4 Jun 2025 00:54:44 +0900 Subject: [PATCH 2/2] 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