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