mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
python3Packages.aioftp: skip pasv-mode test on darwin
This commit is contained in:
parent
55cce1d5f7
commit
cd07879440
@ -1,4 +1,5 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, async-timeout
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
@ -32,6 +33,11 @@ buildPythonPackage rec {
|
||||
trustme
|
||||
];
|
||||
|
||||
disabledTests = lib.optionals stdenv.isDarwin [
|
||||
# uses 127.0.0.2, which macos doesn't like
|
||||
"test_pasv_connection_pasv_forced_response_address"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"aioftp"
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user