The version can be tested now in github actions on ubuntu latest.
Signed-off-by: Nir Soffer nsoffer@redhat.com --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tox.ini b/tox.ini index c0cf5a1..04676a9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,32 +1,32 @@ # Tox (http://tox.testrun.org/) is a tool for running tests # in multiple virtualenvs. This configuration file will run the # test suite on all supported python versions. To use it, "pip install tox" # and then run "tox" from this directory.
[tox] -envlist = py{36,37,38,39,310},flake8 +envlist = py{36,37,38,39,310,311},flake8 skipsdist = True skip_missing_interpreters = True
[testenv] passenv = * setenv = LD_LIBRARY_PATH={env:PWD}/wdmd:{env:PWD}/src SANLOCK_PRIVILEGED=0 SANLOCK_RUN_DIR=/tmp/sanlock whitelist_externals = make deps = pytest userstorage>=0.5.1 commands = - py{36,37,38,39,310}: make BUILDARGS="--build-lib={envsitepackagesdir}" + py{36,37,38,39,310,311}: make BUILDARGS="--build-lib={envsitepackagesdir}" pytest {posargs}
[testenv:flake8] deps = flake8 commands = flake8 --statistics tests python
[pytest] # Notes: # --basetemp: we must use /var/tmp as sanlock uses direct I/O. # -rxX show extra test summary: (x)failed, (X)passed,