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 changed files with 6 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ lib
|
||||||
|
, stdenv
|
||||||
, async-timeout
|
, async-timeout
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
@ -32,6 +33,11 @@ buildPythonPackage rec {
|
||||||
trustme
|
trustme
|
||||||
];
|
];
|
||||||
|
|
||||||
|
disabledTests = lib.optionals stdenv.isDarwin [
|
||||||
|
# uses 127.0.0.2, which macos doesn't like
|
||||||
|
"test_pasv_connection_pasv_forced_response_address"
|
||||||
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
"aioftp"
|
"aioftp"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue