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:
parent
baa07a87bd
commit
bcdc5a92dd
1 changed files with 6 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue