From: Oleg Broytman Date: Mon, 13 Jan 2025 21:36:53 +0000 (+0300) Subject: Tests(tox): Change syntax for `envlist` X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=4ae9e869eefcf18796ff83250ddf3755c4170d8c;p=m_librarian.git Tests(tox): Change syntax for `envlist` `[testenv:]` doesn't allow lists like `[testenv:py27,py3{4,5}]`; it only allows syntax like `[testenv:py{27,34,35}]`. This commit changes syntax for `envlist` to make it closer to `[testenv:]`. --- diff --git a/tox.ini b/tox.ini index 096ceed..c41a511 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.15 -envlist = py27-sqlite,py3{4,5,6,7,8,9,10,11,12,13}-sqlite,py{27,37,312}-flake8 +envlist = py{27,34,35,36,37,38,39,310,311,312,313}-sqlite,py{27,37,312}-flake8 # Base test environment settings [testenv]