File tree Expand file tree Collapse file tree 2 files changed +1
-29
lines changed Expand file tree Collapse file tree 2 files changed +1
-29
lines changed Original file line number Diff line number Diff line change 134
134
"justMyCode" : false ,
135
135
"cwd" : " ${workspaceFolder}" ,
136
136
},
137
- {
138
- "name" : " Python: Pytest All Test Parallel" ,
139
- "type" : " python" ,
140
- "request" : " launch" ,
141
- "module" : " pytest" ,
142
- "args" : [
143
- " -n" ,
144
- " 8" ,
145
- " ."
146
- ],
147
- "console" : " integratedTerminal" ,
148
- "justMyCode" : false ,
149
- "cwd" : " ${workspaceFolder}" ,
150
- },
151
- {
152
- "name" : " Python: Pytest All Test Coverage" ,
153
- "type" : " python" ,
154
- "request" : " launch" ,
155
- "module" : " pytest" ,
156
- "args" : [
157
- " --cov-report=xml" ,
158
- " --cov=robotcode" ,
159
- " ."
160
- ],
161
- "console" : " integratedTerminal" ,
162
- "justMyCode" : false ,
163
- "cwd" : " ${workspaceFolder}" ,
164
- },
165
137
{
166
138
"name" : " Python: Pytest Current File" ,
167
139
"type" : " python" ,
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ extend-exclude = '''
122
122
123
123
[tool .pytest .ini_options ]
124
124
minversion = " 6.0"
125
- addopts = " -ra -vv -rf"
125
+ addopts = " -ra -vv -rf --ignore=bundled --ignore=.hatch "
126
126
filterwarnings = " ignore:.*Using or importing the ABCs from 'collections' instead of from 'collections.abc'.*:DeprecationWarning"
127
127
testpaths = [" tests" ]
128
128
junit_suite_name = " robotcode"
You can’t perform that action at this time.
0 commit comments