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
|
, 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";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue