mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
Merge pull request #102403 from jonringer/pubsub
python3Packages.google_cloud_pubsub: disable tests
This commit is contained in:
commit
6a563e121f
@ -20,10 +20,14 @@ buildPythonPackage rec {
|
|||||||
checkInputs = [ pytest mock ];
|
checkInputs = [ pytest mock ];
|
||||||
propagatedBuildInputs = [ enum34 grpc_google_iam_v1 google_api_core ];
|
propagatedBuildInputs = [ enum34 grpc_google_iam_v1 google_api_core ];
|
||||||
|
|
||||||
|
# tests don't clean up file descriptors correctly
|
||||||
|
doCheck = false;
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
pytest tests/unit
|
pytest tests/unit
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "google.cloud.pubsub" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Google Cloud Pub/Sub API client library";
|
description = "Google Cloud Pub/Sub API client library";
|
||||||
homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
|
homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
|
||||||
|
Loading…
Reference in New Issue
Block a user