Hi,
I am trying to get s3ql to run for the first time and I am havinginto some issues during the installation.
To make sure everything works I wanted to run the self-tests but they keep failing and I can't figure out why.
The commands I used on a centos 7.7 system are the following:
(for connecting to a swift backend at the end)
yum -y install libattr-devel sqlite-devel psmisc python3-devel fuse3-devel gcc-c++ systemd-devel
pip3 install --upgrade setuptools pip cryptography defusedxml apsw trio pyfuse3 dugong async_generator google-auth-oauthlib pytest_trio
mkdir /opt/s3ql
cd /opt/s3ql
tar -xvf s3ql-3.5.1.tar.bz2
cd s3ql-3.5.1
python3 setup.py build_ext --inplace
python3 -m pytest tests/
And as result I get this:
My python modules that are all installed and versions:
Package Version
-------------------- -----------
apsw 3.9.2.post1
async-generator 1.10
attrs 20.2.0
cachetools 4.1.1
certifi 2020.6.20
cffi 1.14.3
chardet 3.0.4
contextvars 2.4
cryptography 3.1.1
defusedxml 0.6.0
dugong 3.7.5
google-auth 1.22.1
google-auth-oauthlib 0.4.1
idna 2.10
immutables 0.14
importlib-metadata 2.0.0
iniconfig 1.1.1
oauthlib 3.1.0
outcome 1.0.1
packaging 20.4
pip 20.2.3
pluggy 0.13.1
py 1.9.0
pyasn1 0.4.8
pyasn1-modules 0.2.8
pycparser 2.20
pyfuse3 3.1.1
pyparsing 2.4.7
pytest 6.1.1
pytest-trio 0.7.0
requests 2.24.0
requests-oauthlib 1.3.0
rsa 4.6
setuptools 50.3.1
six 1.15.0
sniffio 1.2.0
sortedcontainers 2.2.2
toml 0.10.1
trio 0.17.0
urllib3 1.25.10
zipp 3.3.1
Does someone by chance know what I am doing wrong or what I missed?
Thanks a lot for any help :)