This is an automated email from the git hooks/post-receive script.
nsoffer pushed a commit to branch master in repository sanlock.
The following commit(s) were added to refs/heads/master by this push: new 2f21820 tox: Remove pytest version 2f21820 is described below
commit 2f21820bef2ddcd818a24ce5879e499a1b93f607 Author: Nir Soffer nsoffer@redhat.com AuthorDate: Thu Dec 10 18:36:41 2020 +0200
tox: Remove pytest version
pytest 4.0 is too old. It was needed when we supported python 2 but we don't since Jan 2020. Lets use latest pytest.
With newer pytest six is missing. We need to remove usage of six but lets starts by adding it in the tests.
Signed-off-by: Nir Soffer nsoffer@redhat.com --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tox.ini b/tox.ini index 487158d..e72937f 100644 --- a/tox.ini +++ b/tox.ini @@ -16,7 +16,8 @@ setenv = SANLOCK_RUN_DIR=/tmp/sanlock whitelist_externals = make deps = - pytest==4.0 + pytest + six commands = py{36,37,38}: make BUILDARGS="--build-lib={envsitepackagesdir}" pytest {posargs}
sanlock-devel@lists.fedorahosted.org