|
30 | 30 | pytest.param( |
31 | 31 | "inplace", |
32 | 32 | marks=pytest.mark.skip( |
33 | | - "`inplace` editable mode requires build tree layout to match package layout.")) |
| 33 | + "`inplace` editable mode requires build tree layout to match package layout." |
| 34 | + ), |
| 35 | + ), |
34 | 36 | ], |
35 | | - indirect=True |
| 37 | + indirect=True, |
36 | 38 | ) |
37 | 39 | @pytest.mark.skipif( |
38 | 40 | sys.version_info < (3, 9), |
@@ -70,13 +72,18 @@ def test_basic_data_resources(editable, isolated): |
70 | 72 | "editable", |
71 | 73 | [ |
72 | 74 | pytest.param(None, id="not_editable"), |
73 | | - pytest.param("redirect", marks=pytest.mark.xfail(reason="Redirection requires #808", strict=True)), |
| 75 | + pytest.param( |
| 76 | + "redirect", |
| 77 | + marks=pytest.mark.xfail(reason="Redirection requires #808", strict=True), |
| 78 | + ), |
74 | 79 | pytest.param( |
75 | 80 | "inplace", |
76 | 81 | marks=pytest.mark.skip( |
77 | | - "`inplace` editable mode requires build tree layout to match package layout.")) |
| 82 | + "`inplace` editable mode requires build tree layout to match package layout." |
| 83 | + ), |
| 84 | + ), |
78 | 85 | ], |
79 | | - indirect=True |
| 86 | + indirect=True, |
80 | 87 | ) |
81 | 88 | @pytest.mark.skipif( |
82 | 89 | sys.version_info < (3, 9), |
@@ -104,13 +111,18 @@ def test_configure_time_generated_data(editable, isolated): |
104 | 111 | "editable", |
105 | 112 | [ |
106 | 113 | pytest.param(None, id="not_editable"), |
107 | | - pytest.param("redirect", marks=pytest.mark.xfail(reason="Redirection requires #808", strict=True)), |
| 114 | + pytest.param( |
| 115 | + "redirect", |
| 116 | + marks=pytest.mark.xfail(reason="Redirection requires #808", strict=True), |
| 117 | + ), |
108 | 118 | pytest.param( |
109 | 119 | "inplace", |
110 | 120 | marks=pytest.mark.skip( |
111 | | - "`inplace` editable mode requires build tree layout to match package layout.")) |
| 121 | + "`inplace` editable mode requires build tree layout to match package layout." |
| 122 | + ), |
| 123 | + ), |
112 | 124 | ], |
113 | | - indirect=True |
| 125 | + indirect=True, |
114 | 126 | ) |
115 | 127 | @pytest.mark.skipif( |
116 | 128 | sys.version_info < (3, 9), |
@@ -138,13 +150,18 @@ def test_build_time_generated_data(editable, isolated): |
138 | 150 | "editable", |
139 | 151 | [ |
140 | 152 | pytest.param(None, id="not_editable"), |
141 | | - pytest.param("redirect", marks=pytest.mark.xfail(reason="Redirection requires #808", strict=True)), |
| 153 | + pytest.param( |
| 154 | + "redirect", |
| 155 | + marks=pytest.mark.xfail(reason="Redirection requires #808", strict=True), |
| 156 | + ), |
142 | 157 | pytest.param( |
143 | 158 | "inplace", |
144 | 159 | marks=pytest.mark.skip( |
145 | | - "`inplace` editable mode requires build tree layout to match package layout.")) |
| 160 | + "`inplace` editable mode requires build tree layout to match package layout." |
| 161 | + ), |
| 162 | + ), |
146 | 163 | ], |
147 | | - indirect=True |
| 164 | + indirect=True, |
148 | 165 | ) |
149 | 166 | @pytest.mark.skipif( |
150 | 167 | sys.version_info < (3, 9), |
@@ -176,9 +193,11 @@ def test_compiled_ctypes_resource(editable, isolated): |
176 | 193 | pytest.param( |
177 | 194 | "inplace", |
178 | 195 | marks=pytest.mark.skip( |
179 | | - "`inplace` editable mode requires build tree layout to match package layout.")) |
| 196 | + "`inplace` editable mode requires build tree layout to match package layout." |
| 197 | + ), |
| 198 | + ), |
180 | 199 | ], |
181 | | - indirect=True |
| 200 | + indirect=True, |
182 | 201 | ) |
183 | 202 | @pytest.mark.skipif( |
184 | 203 | sys.version_info < (3, 9), |
@@ -240,9 +259,11 @@ def test_configure_time_generated_module(editable, isolated): |
240 | 259 | pytest.param( |
241 | 260 | "inplace", |
242 | 261 | marks=pytest.mark.skip( |
243 | | - "`inplace` editable mode requires build tree layout to match package layout.")) |
| 262 | + "`inplace` editable mode requires build tree layout to match package layout." |
| 263 | + ), |
| 264 | + ), |
244 | 265 | ], |
245 | | - indirect=True |
| 266 | + indirect=True, |
246 | 267 | ) |
247 | 268 | @pytest.mark.skipif( |
248 | 269 | sys.version_info < (3, 9), |
|
0 commit comments