Merge pull request #312957 from knedlsepp/python-protobuf

protobuf_25.tests.pythonProtobuf: disable faulty test

authored by Someone and committed by GitHub 0852bd6a b30aef1f

+3 -1
+3 -1
pkgs/development/python-modules/protobuf/default.nix
··· 104 # https://github.com/protocolbuffers/protobuf/commit/5abab0f47e81ac085f0b2d17ec3b3a3b252a11f1 105 # 106 "google/protobuf/internal/generator_test.py" 107 ]; 108 109 pythonImportsCheck = [ ··· 122 maintainers = with maintainers; [ knedlsepp ]; 123 # Tests are currently failing because backend is unavailable and causes tests to fail 124 # Progress tracked in https://github.com/NixOS/nixpkgs/pull/264902 125 - broken = lib.versionAtLeast protobuf.version "25"; 126 }; 127 }
··· 104 # https://github.com/protocolbuffers/protobuf/commit/5abab0f47e81ac085f0b2d17ec3b3a3b252a11f1 105 # 106 "google/protobuf/internal/generator_test.py" 107 + ] ++ lib.optionals (lib.versionAtLeast protobuf.version "25") [ 108 + "minimal_test.py" # ModuleNotFoundError: No module named 'google3' 109 ]; 110 111 pythonImportsCheck = [ ··· 124 maintainers = with maintainers; [ knedlsepp ]; 125 # Tests are currently failing because backend is unavailable and causes tests to fail 126 # Progress tracked in https://github.com/NixOS/nixpkgs/pull/264902 127 + broken = lib.versionAtLeast protobuf.version "26"; 128 }; 129 }