From 96b1246416072636c366b99aaf26e36b5a31af66 Mon Sep 17 00:00:00 2001 From: meherett Date: Thu, 7 Sep 2023 10:39:03 +0300 Subject: [PATCH] Fix: tox.ini configurations packages & opts --- tox.ini | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tox.ini b/tox.ini index cea72f3..0c83767 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = python39 +envlist = python39,python310,python311 [travis] python = @@ -9,21 +9,21 @@ python = [testenv:python39] install_command = - python -m pip install --upgrade pip - pip install -e . + python -m pip install --upgrade pip {opts} {packages} + pip install -e . {opts} {packages} extras = tests,docs commands = python -m pytest [testenv:python310] install_command = - python -m pip install --upgrade pip {packages} - pip install -e . {packages} + python -m pip install --upgrade pip {opts} {packages} + pip install -e . {opts} {packages} extras = tests,docs commands = python -m pytest [testenv:python311] install_command = - python -m pip install --upgrade pip {packages} - pip install -e . {packages} + python -m pip install --upgrade pip {opts} {packages} + pip install -e . {opts} {packages} extras = tests,docs commands = python -m pytest