Merge pull request #174997 from risicle/ris-aioftp-darwin-skip-pasv-test
python3Packages.aioftp: skip pasv-mode test on darwin
This commit is contained in:
commit
a9ebc81751
@ -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