File: get_test_exclusions

package info (click to toggle)
debugpy 1.6.6%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,264 kB
  • sloc: python: 13,833; sh: 244; makefile: 25
file content (246 lines) | stat: -rwxr-xr-x 22,115 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#! /bin/bash

# Many tests fail with Python 3.11.  This script generates appropriate
# code for the pytest call.

# This script is called from both debian/rules and from the
# autopkgtest suite.  Because many of the test exclusions include
# parentheses, any they are called in different ways, we take an
# argument specifying rules or autopkgtest

quoting=$1
if [ "$quoting" != rules ] && [ "$quoting" != autopkgtest ]
then
    echo "Argument must be 'rules' or 'autopkgtest'" >&2
    exit 1
fi

arch=$(dpkg --print-architecture)

EXCLUDES+=(
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-attach_listen(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-attach_connect(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-attach_listen(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-attach_connect(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-attach_listen(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-attach_listen(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-attach_connect(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-attach_connect(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-attach_pid-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-attach_connect(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-attach_connect(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-attach_pid-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-attach_connect(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-attach_pid-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-attach_pid-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-launch(console=internalConsole)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-launch(console=internalConsole)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-launch(console=integratedTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-launch(console=integratedTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-launch(console=externalTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-launch(console=externalTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-attach_listen(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-attach_listen(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-attach_listen(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-attach_listen(cli)-module]"
    "tests/debugpy/test_exception.py::test_vsc_exception_options_raise_with_except[program-launch-uncaught-raised]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero--raised-attach_connect(api)-program]"
    "tests/debugpy/test_exception.py::test_vsc_exception_options_raise_with_except[program-launch--raised]"
    "tests/debugpy/test_exception.py::test_vsc_exception_options_raise_without_except[program-launch-uncaught-raised]"
    "tests/debugpy/test_exception.py::test_vsc_exception_options_raise_without_except[program-launch-uncaught-]"
    "tests/debugpy/test_exception.py::test_vsc_exception_options_raise_without_except[program-launch--raised]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-launch(console=internalConsole)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-launch(console=internalConsole)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-launch(console=integratedTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-launch(console=integratedTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-launch(console=externalTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[0-zero-uncaught-raised-launch(console=externalTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-attach_connect(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-attach_connect(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-attach_connect(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-attach_connect(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-attach_pid-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-attach_connect(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-attach_pid-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-attach_pid-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-launch(console=internalConsole)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-attach_pid-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-launch(console=internalConsole)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-launch(console=integratedTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-launch(console=internalConsole)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-launch(console=integratedTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-launch(console=internalConsole)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-launch(console=externalTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-launch(console=integratedTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-launch(console=externalTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-launch(console=integratedTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-attach_listen(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-launch(console=externalTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-attach_listen(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-attach_listen(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-launch(console=externalTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-attach_listen(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-attach_listen(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-attach_connect(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-attach_listen(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-launch(console=integratedTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-attach_listen(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-attach_connect(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-launch(console=externalTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-attach_listen(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-attach_connect(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-launch(console=externalTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-attach_connect(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-attach_listen(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-attach_connect(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-attach_connect(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-attach_listen(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-attach_listen(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-attach_connect(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-attach_pid-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-attach_listen(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-attach_connect(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-launch(console=internalConsole)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero-uncaught-raised-attach_pid-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-attach_connect(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-launch(console=internalConsole)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-attach_pid-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-attach_connect(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-launch(console=integratedTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-attach_connect(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-launch(console=integratedTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1---raised-attach_pid-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-attach_connect(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-launch(console=externalTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-launch(console=externalTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-attach_pid-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-attach_listen(api)-program]"
    "tests/debugpy/test_exception.py::test_raise_exception_options[program-launch-exceptions3-always]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-attach_listen(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-attach_pid-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-attach_listen(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-attach_listen(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-attach_connect(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-attach_connect(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-attach_connect(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-attach_connect(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-attach_pid-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan--uncaught-raised-attach_pid-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-launch(console=internalConsole)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-launch(console=internalConsole)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-launch(console=integratedTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-launch(console=internalConsole)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-launch(console=integratedTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-launch(console=internalConsole)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-launch(console=externalTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-launch(console=integratedTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-launch(console=externalTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-launch(console=integratedTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-attach_listen(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-launch(console=externalTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-attach_listen(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-launch(console=externalTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-attach_listen(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-attach_listen(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-attach_listen(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-attach_listen(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-attach_connect(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-attach_listen(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-attach_listen(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-attach_connect(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-attach_connect(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-attach_connect(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-attach_connect(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-attach_connect(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-attach_connect(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-attach_pid-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-attach_connect(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1--uncaught-raised-attach_pid-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-attach_pid-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-launch(console=internalConsole)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero--raised-attach_pid-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-launch(console=internalConsole)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-launch(console=integratedTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-launch(console=internalConsole)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-launch(console=integratedTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-launch(console=internalConsole)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-launch(console=externalTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-launch(console=integratedTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-launch(console=externalTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-launch(console=integratedTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-attach_listen(api)-program]"
    "tests/debugpy/test_exception.py::test_raise_exception_options[program-launch-exceptions0-always]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-launch(console=externalTerminal)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-attach_listen(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-attach_listen(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-launch(console=externalTerminal)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-attach_listen(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-attach_listen(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-attach_listen(api)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[1-zero--raised-attach_connect(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-attach_listen(cli)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-attach_listen(cli)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-attach_connect(api)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan-zero-uncaught-raised-attach_connect(api)-module]"
    "tests/debugpy/test_exception.py::test_raise_exception_options[program-launch-exceptions1-always]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-launch(console=internalConsole)-program]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-launch(console=internalConsole)-module]"
    "tests/debugpy/test_exception.py::test_systemexit[nan---raised-launch(console=integratedTerminal)-program]"
    "tests/debugpy/test_exception.py::test_exception_stack[program-launch-default]"
    "tests/debugpy/test_exception.py::test_raise_exception_options[program-launch-exceptions2-always]"
    "tests/debugpy/test_exception.py::test_exception_stack[program-launch-all]"
    "tests/debugpy/test_exception.py::test_exception_stack[program-launch-10]"
    "tests/debugpy/test_django.py::test_django_breakpoint_no_multiproc[launch-code]"
    "tests/debugpy/test_exclude_rules.py::test_exceptions_and_partial_exclude_rules[program-launch-exclude_code_to_debug]"
    "tests/debugpy/test_exclude_rules.py::test_exceptions_and_partial_exclude_rules[program-launch-exclude_callback_dir]"
    "tests/debugpy/test_exclude_rules.py::test_exceptions_and_partial_exclude_rules[module-launch-exclude_code_to_debug]"
    "tests/debugpy/test_exclude_rules.py::test_exceptions_and_partial_exclude_rules[module-launch-exclude_callback_dir]"
    "tests/debugpy/test_run.py::test_frame_eval[-module-launch(console=internalConsole)]"
    "tests/debugpy/test_run.py::test_frame_eval[-module-launch(console=integratedTerminal)]"
    "tests/debugpy/test_run.py::test_frame_eval[-code-attach_listen(cli)]"
    "tests/debugpy/test_run.py::test_frame_eval[-module-launch(console=externalTerminal)]"
    "tests/debugpy/test_run.py::test_frame_eval[-code-attach_connect(api)]"
    "tests/debugpy/test_run.py::test_frame_eval[-module-attach_listen(api)]"
    "tests/debugpy/test_run.py::test_frame_eval[-module-attach_listen(cli)]"
    "tests/debugpy/test_run.py::test_frame_eval[-code-attach_connect(cli)]"
    "tests/debugpy/test_run.py::test_frame_eval[-module-attach_connect(api)]"
    "tests/debugpy/test_run.py::test_frame_eval[-code-attach_pid]"
    "tests/debugpy/test_run.py::test_frame_eval[-module-attach_connect(cli)]"
    "tests/debugpy/test_run.py::test_frame_eval[-module-attach_pid]"
    "tests/debugpy/test_run.py::test_frame_eval[-code-launch(console=internalConsole)]"
    "tests/debugpy/test_run.py::test_frame_eval[-code-launch(console=integratedTerminal)]"
    "tests/debugpy/test_run.py::test_frame_eval[-code-launch(console=externalTerminal)]"
    "tests/debugpy/test_run.py::test_frame_eval[-code-attach_listen(api)]"
    "tests/debugpy/test_run.py::test_frame_eval[-program-launch(console=internalConsole)]"
    "tests/debugpy/test_run.py::test_frame_eval[-program-launch(console=integratedTerminal)]"
    "tests/debugpy/test_run.py::test_frame_eval[-program-launch(console=externalTerminal)]"
    "tests/debugpy/test_run.py::test_frame_eval[-program-attach_listen(api)]"
    "tests/debugpy/test_run.py::test_frame_eval[-program-attach_listen(cli)]"
    "tests/debugpy/test_run.py::test_frame_eval[-program-attach_connect(api)]"
    "tests/debugpy/test_run.py::test_frame_eval[-program-attach_connect(cli)]"
    "tests/debugpy/test_run.py::test_frame_eval[-program-attach_pid]"
    "tests/debugpy/test_flask.py::test_flask_template_exception_no_multiproc[launch]"
    "tests/debugpy/test_flask.py::test_flask_exception_no_multiproc[launch-handled]"
    "tests/debugpy/test_flask.py::test_flask_exception_no_multiproc[launch-unhandled]"
    "tests/debugpy/test_django.py::test_django_breakpoint_no_multiproc[launch-template]"
    "tests/debugpy/test_django.py::test_django_exception_no_multiproc[launch-handled]"
    "tests/debugpy/test_django.py::test_django_exception_no_multiproc[launch-unhandled]"
    "tests/debugpy/test_django.py::test_django_template_exception_no_multiproc[launch]"
    "tests/debugpy/test_django.py::test_django_breakpoint_multiproc[launch]"
)

DESELECTS=()
if [ $quoting = rules ]
then
    for test in "${EXCLUDES[@]}"
    do
        DESELECTS+=("--deselect='$test'")
    done
    echo ${DESELECTS[*]}
else
    for test in "${EXCLUDES[@]}"
    do
        DESELECTS+=("--deselect=$test")
    done
    echo "${DESELECTS[*]}"
fi