From 2f53ff2560f4dd46fbd35664cbfe2181e84c3e80 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 15 Apr 2025 21:14:13 +0900 Subject: [PATCH] Fix outdated benchmark target The existing target uses python 2 which is no longer supported. Replace it by the separate target for python 3 because now python 3 is the only supported version. Change-Id: I76b4458a1b77e9c8a17051dcf08e57560717b16f --- tox.ini | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tox.ini b/tox.ini index 48f5994..a863306 100644 --- a/tox.ini +++ b/tox.ini @@ -54,11 +54,8 @@ ignore = E731,W504 exclude = .tox,dist,doc,*.egg,build [testenv:benchmark] -basepython = python2.7 -commands = python benchmark/benchmark.py - -[testenv:benchmark3] -commands = python3 benchmark/benchmark.py +commands = + python3 benchmark/benchmark.py [testenv:releasenotes] allowlist_externals = rm