Skip to content

Commit

Permalink
python3Packages.aioftp: skip pasv-mode test on darwin
Browse files Browse the repository at this point in the history
(cherry picked from commit cd07879)
  • Loading branch information
risicle authored and github-actions[bot] committed May 28, 2022
1 parent f1f0c4c commit 53544f8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkgs/development/python-modules/aioftp/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ lib
, stdenv
, async-timeout
, buildPythonPackage
, fetchPypi
Expand Down Expand Up @@ -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"
];
Expand Down

0 comments on commit 53544f8

Please sign in to comment.