1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

Merge pull request #141951 from fabaff/fix-asyncssh

python3Packages.asyncssh: disable TestSKAuthCTAP2 tests
This commit is contained in:
Fabian Affolter 2021-10-17 11:29:54 +02:00 committed by GitHub
commit 3d8ffb1fa4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,6 +59,11 @@ buildPythonPackage rec {
"tests/sspi_stub.py"
];
disabledTests = [
# No PIN set
"TestSKAuthCTAP2"
];
pythonImportsCheck = [ "asyncssh" ];
meta = with lib; {