File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
pythonFiles/tests/debug_adapter Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 61
61
"git.branchProtection" : [" main" , " release/*" ],
62
62
"git.pullBeforeCheckout" : true ,
63
63
// Open merge editor for resolving conflicts.
64
- "git.mergeEditor" : true
64
+ "git.mergeEditor" : true ,
65
+ "python.testing.pytestArgs" : [
66
+ " pythonFiles/tests"
67
+ ],
68
+ "python.testing.unittestEnabled" : false ,
69
+ "python.testing.pytestEnabled" : true
65
70
}
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ def _check_binaries(dir_path):
9
9
"win_amd64.pyd" ,
10
10
"win32.pyd" ,
11
11
"darwin.so" ,
12
- "i386-linux-gnu.so" ,
13
12
"x86_64-linux-gnu.so" ,
14
13
)
15
14
@@ -18,10 +17,6 @@ def _check_binaries(dir_path):
18
17
assert len (binaries ) == len (expected_endswith )
19
18
20
19
21
- @pytest .mark .skipif (
22
- sys .version_info [:2 ] != (3 , 7 ),
23
- reason = "DEBUGPY wheels shipped for Python 3.7 only" ,
24
- )
25
20
def test_install_debugpy (tmpdir ):
26
21
import install_debugpy
27
22
You can’t perform that action at this time.
0 commit comments