We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6322dd1 commit ba20096Copy full SHA for ba20096
pkgs/development/python-modules/debugpy/default.nix
@@ -11,6 +11,7 @@
11
pytestCheckHook,
12
pytest-xdist,
13
pytest-timeout,
14
+ pytest-retry,
15
importlib-metadata,
16
psutil,
17
untangle,
@@ -99,6 +100,7 @@ buildPythonPackage rec {
99
100
pytestCheckHook
101
pytest-xdist
102
pytest-timeout
103
+ pytest-retry
104
105
## Used by test helpers:
106
importlib-metadata
@@ -129,7 +131,12 @@ buildPythonPackage rec {
129
131
'';
130
132
133
# Override default arguments in pytest.ini
- pytestFlagsArray = [ "--timeout=0" ];
134
+ pytestFlags = [ "--timeout=0" ];
135
+
136
+ disabledTests = [
137
+ # hanging test (flaky)
138
+ "test_systemexit"
139
+ ];
140
141
# Fixes hanging tests on Darwin
142
__darwinAllowLocalNetworking = true;
0 commit comments