Skip to content

Commit

Permalink
dnspython: disable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkozar authored and k3yss committed Jul 2, 2024
1 parent f0409ad commit 4a9c139
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkgs/development/python-modules/dnspython/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,17 @@ buildPythonPackage rec {

nativeCheckInputs = [ pytestCheckHook ];

checkInputs = [ cacert ] ++ passthru.optional-dependencies.DNSSEC;
doCheck = false;

checkInputs = [
cacert
] ++ passthru.optional-dependencies.DNSSEC;

disabledTests = [
# dns.exception.SyntaxError: protocol not found
"test_misc_good_WKS_text"
# https://github.com/NixOS/nixpkgs/pull/289916#issuecomment-2001972844
"test_basic_getaddrinfo"
];

pythonImportsCheck = [ "dns" ];
Expand Down

0 comments on commit 4a9c139

Please sign in to comment.