Skip to content

Commit

Permalink
Merge pull request #175184 from NixOS/backport-174997-to-release-22.05
Browse files Browse the repository at this point in the history
[Backport release-22.05] python3Packages.aioftp: skip pasv-mode test on darwin
  • Loading branch information
risicle authored May 28, 2022
2 parents d4efa1d + 53544f8 commit 3ef0aa0
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 3ef0aa0

Please sign in to comment.