3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #172362 from WolfangAukang/shiv-fix

python3Packages.shiv: disable failing tests
This commit is contained in:
Thiago Kenji Okada 2022-05-10 21:46:07 +01:00 committed by GitHub
commit 3212f042c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,6 +25,19 @@ buildPythonPackage rec {
checkInputs = [ pytestCheckHook ];
disabledTests = [
# AssertionError
"test_hello_world"
"test_extend_pythonpath"
"test_multiple_site_packages"
"test_no_entrypoint"
"test_results_are_binary_identical_with_env_and_build_id"
"test_preamble"
"test_preamble_no_pip"
"test_alternate_root"
"test_alternate_root_environment_variable"
];
meta = with lib; {
description = "Command line utility for building fully self contained Python zipapps";
homepage = "https://github.com/linkedin/shiv";