0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python3Packages.azure-core: fix tests

This commit is contained in:
Jonathan Ringer 2020-08-08 17:51:07 -07:00 committed by Jon
parent baa07a87bd
commit bcdc5a92dd

View file

@ -4,6 +4,8 @@
, mock , mock
, msrest , msrest
, pytest , pytest
, pytest-asyncio
, pytest-trio
, pytestCheckHook , pytestCheckHook
, requests , requests
, six , six
@ -33,13 +35,16 @@ buildPythonPackage rec {
mock mock
msrest msrest
pytest pytest
pytest-trio
pytest-asyncio
pytestCheckHook pytestCheckHook
trio trio
typing-extensions typing-extensions
]; ];
pytestFlagsArray = [ "tests/" ]; pytestFlagsArray = [ "tests/" ];
disabledTests = [ "response" "request" "timeout" ]; # disable tests which touch network
disabledTests = [ "aiohttp" "multipart_send" "response" "request" "timeout" ];
meta = with lib; { meta = with lib; {
description = "Microsoft Azure Core Library for Python"; description = "Microsoft Azure Core Library for Python";