Skip to content

Commit

Permalink
python/aiohttp: disable test on 32bit platforms
Browse files Browse the repository at this point in the history
The test `test_cookiejar` is failing because a time_t
constant can't be represented on 32bit platforms.
  • Loading branch information
rnhmjoj authored and Jon committed Feb 18, 2020
1 parent 2599fd0 commit 6be8389
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/development/python-modules/aiohttp/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, pythonOlder
Expand Down Expand Up @@ -54,6 +55,7 @@ buildPythonPackage rec {
and not handle_keepalive_on_closed_connection \
and not proxy_https_bad_response \
and not partially_applied_handler \
${lib.optionalString stdenv.is32bit "and not test_cookiejar"} \
and not middleware" \
--ignore=test_connector.py
'';
Expand Down

0 comments on commit 6be8389

Please sign in to comment.