==> Building on manectric ==> Checking for remote environment... ==> Syncing package to remote host... sending incremental file list ./ PKGBUILD 700 67% 0.00kB/s 0:00:00 1,032 100% 324.22kB/s 0:00:00 (xfr#1, to-chk=1/3) python-requests-futures-1.0.0-5.log 208 100% 203.12kB/s 0:00:00 208 100% 203.12kB/s 0:00:00 (xfr#2, to-chk=0/3) sent 350 bytes received 69 bytes 279.33 bytes/sec total size is 1,228 speedup is 2.93 ==> Running extra-riscv64-build -- -d /home/felix/packages/riscv64-pkg-cache:/var/cache/pacman/pkg -l root25 on remote host... [?25l:: Synchronizing package databases... core downloading... extra downloading... community downloading... :: Starting full system upgrade... there is nothing to do [?25h==> Building in chroot for [extra] (riscv64)... ==> Synchronizing chroot copy [/var/lib/archbuild/extra-riscv64/root] -> [root25]...done ==> Making package: python-requests-futures 1.0.0-5 (Tue May 9 14:33:43 2023) ==> Retrieving sources...  -> Found requests-futures-1.0.0.tar.gz ==> Validating source files with sha256sums... requests-futures-1.0.0.tar.gz ... Passed ==> Making package: python-requests-futures 1.0.0-5 (Tue May 9 14:33:57 2023) ==> Checking runtime dependencies... ==> Installing missing dependencies... [?25lresolving dependencies... looking for conflicting packages... Package (6) New Version Net Change core/libnsl 2.0.0-3 0.06 MiB core/python 3.11.3-1 104.68 MiB extra/python-chardet 5.1.0-3 3.02 MiB extra/python-idna 3.4-3 0.71 MiB extra/python-urllib3 1.26.15-1 1.30 MiB extra/python-requests 2.28.2-4 0.61 MiB Total Installed Size: 110.38 MiB :: Proceed with installation? [Y/n] checking keyring... checking package integrity... loading package files... checking for file conflicts... :: Processing package changes... installing libnsl... installing python... Optional dependencies for python python-setuptools python-pip sqlite [installed] mpdecimal: for decimal xz: for lzma [installed] tk: for tkinter installing python-urllib3... Optional dependencies for python-urllib3 python-brotli: Brotli support python-certifi: security support python-cryptography: security support python-idna: security support [pending] python-pyopenssl: security support python-pysocks: SOCKS support installing python-chardet... installing python-idna... installing python-requests... Optional dependencies for python-requests python-pysocks: SOCKS proxy support [?25h==> Checking buildtime dependencies... ==> Installing missing dependencies... [?25lresolving dependencies... looking for conflicting packages... Package (19) New Version Net Change community/python-autocommand 2.2.2-4 0.08 MiB community/python-fastjsonschema 2.16.3-4 0.29 MiB community/python-inflect 6.0.4-2 0.38 MiB community/python-iniconfig 2.0.0-4 0.04 MiB community/python-jaraco.context 4.3.0-3 0.04 MiB community/python-jaraco.functools 3.6.0-3 0.06 MiB community/python-jaraco.text 3.11.1-3 0.09 MiB community/python-more-itertools 9.1.1-4 0.61 MiB extra/python-ordered-set 4.1.0-4 0.07 MiB extra/python-packaging 23.0-3 0.43 MiB extra/python-platformdirs 3.5.0-2 0.20 MiB community/python-pluggy 1.0.0-4 0.13 MiB community/python-pydantic 1.10.7-4 6.36 MiB extra/python-tomli 2.0.1-3 0.11 MiB extra/python-trove-classifiers 2023.4.22-1 0.11 MiB community/python-typing_extensions 4.5.0-4 0.29 MiB extra/python-validate-pyproject 0.12.2-4 0.29 MiB community/python-pytest 7.3.1-4 3.97 MiB extra/python-setuptools 1:67.7.0-1 4.68 MiB Total Installed Size: 18.24 MiB :: Proceed with installation? [Y/n] checking keyring... checking package integrity... loading package files... checking for file conflicts... :: Processing package changes... installing python-more-itertools... installing python-jaraco.functools... installing python-jaraco.context... installing python-autocommand... installing python-typing_extensions... installing python-pydantic... Optional dependencies for python-pydantic python-dotenv: for .env file support python-email-validator: for email validation installing python-inflect... installing python-jaraco.text... installing python-ordered-set... installing python-packaging... installing python-platformdirs... installing python-tomli... installing python-fastjsonschema... installing python-trove-classifiers... installing python-validate-pyproject... installing python-setuptools... installing python-iniconfig... installing python-pluggy... installing python-pytest... [?25h==> Retrieving sources...  -> Found requests-futures-1.0.0.tar.gz ==> WARNING: Skipping all source file integrity checks. ==> Extracting sources...  -> Extracting requests-futures-1.0.0.tar.gz with bsdtar ==> Starting build()... /usr/lib/python3.11/site-packages/setuptools/__init__.py:84: _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are deprecated. !! ******************************************************************************** Requirements should be satisfied by a PEP 517 installer. If you are using pip, you can try `pip install --use-pep517`. ******************************************************************************** !! dist.fetch_build_eggs(dist.setup_requires) WARNING: The wheel package is not available. running build running build_py creating build creating build/lib creating build/lib/requests_futures copying requests_futures/sessions.py -> build/lib/requests_futures copying requests_futures/__init__.py -> build/lib/requests_futures running egg_info writing requests_futures.egg-info/PKG-INFO writing dependency_links to requests_futures.egg-info/dependency_links.txt writing requirements to requests_futures.egg-info/requires.txt writing top-level names to requests_futures.egg-info/top_level.txt reading manifest file 'requests_futures.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' adding license file 'LICENSE' writing manifest file 'requests_futures.egg-info/SOURCES.txt' ==> Starting check()... ============================= test session starts ============================== platform linux -- Python 3.11.3, pytest-7.3.1, pluggy-1.0.0 rootdir: /build/python-requests-futures/src/requests-futures-1.0.0 collected 12 items test_requests_futures.py ..F.F...sFFs [100%] =================================== FAILURES =================================== ____________________ RequestsTestCase.test_futures_session _____________________ self = def test_futures_session(self): # basic futures get sess = FuturesSession() future = sess.get(httpbin('get')) self.assertIsInstance(future, Future) resp = future.result() self.assertIsInstance(resp, Response) self.assertEqual(200, resp.status_code) # non-200, 404 future = sess.get(httpbin('status/404')) resp = future.result() > self.assertEqual(404, resp.status_code) E AssertionError: 404 != 504 test_requests_futures.py:45: AssertionError ________________________ RequestsTestCase.test_redirect ________________________ self = def test_redirect(self): """ Tests for the ability to cleanly handle redirects. """ sess = FuturesSession() future = sess.get(httpbin('redirect-to?url=get')) self.assertIsInstance(future, Future) resp = future.result() self.assertIsInstance(resp, Response) > self.assertEqual(200, resp.status_code) E AssertionError: 200 != 504 test_requests_futures.py:115: AssertionError __________ RequestsProcessPoolTestCase.test_futures_existing_session ___________ self = def test_futures_existing_session(self): self.session.headers['Foo'] = 'bar' > self._assert_futures_session(session=self.session) test_requests_futures.py:190: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test_requests_futures.py:241: in _assert_futures_session self.assertEqual(404, resp.status_code) E AssertionError: 404 != 504 _______________ RequestsProcessPoolTestCase.test_futures_session _______________ self = @skipIf(session_required, 'not supported in python < 3.5') def test_futures_session(self): > self._assert_futures_session() test_requests_futures.py:181: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test_requests_futures.py:203: in _assert_futures_session self.assertEqual(200, resp.status_code) E AssertionError: 200 != 504 =========================== short test summary info ============================ FAILED test_requests_futures.py::RequestsTestCase::test_futures_session - Ass... FAILED test_requests_futures.py::RequestsTestCase::test_redirect - AssertionE... FAILED test_requests_futures.py::RequestsProcessPoolTestCase::test_futures_existing_session FAILED test_requests_futures.py::RequestsProcessPoolTestCase::test_futures_session ============== 4 failed, 6 passed, 2 skipped in 159.96s (0:02:39) ============== ==> ERROR: A failure occurred in check().  Aborting... ==> ERROR: Build failed, check /var/lib/archbuild/extra-riscv64/root25/build receiving incremental file list python-requests-futures-1.0.0-5-riscv64-build.log python-requests-futures-1.0.0-5-riscv64-check.log python-requests-futures-1.0.0-5-x86_64-build.log python-requests-futures-1.0.0-5-x86_64-check.log python-requests-futures-1.0.0-5-x86_64-package.log sent 119 bytes received 3,025 bytes 2,096.00 bytes/sec total size is 8,570 speedup is 2.73