python/aiohttp: disable test on 32bit platforms
The test `test_cookiejar` is failing because a time_t constant can't be represented on 32bit platforms.
This commit is contained in:
parent
2599fd06a2
commit
6be8389b04
@ -1,4 +1,5 @@
|
|||||||
{ lib
|
{ lib
|
||||||
|
, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
@ -54,6 +55,7 @@ buildPythonPackage rec {
|
|||||||
and not handle_keepalive_on_closed_connection \
|
and not handle_keepalive_on_closed_connection \
|
||||||
and not proxy_https_bad_response \
|
and not proxy_https_bad_response \
|
||||||
and not partially_applied_handler \
|
and not partially_applied_handler \
|
||||||
|
${lib.optionalString stdenv.is32bit "and not test_cookiejar"} \
|
||||||
and not middleware" \
|
and not middleware" \
|
||||||
--ignore=test_connector.py
|
--ignore=test_connector.py
|
||||||
'';
|
'';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user