@@ -255,12 +255,9 @@ def test_make_quarto_source_bundle_from_project(self):
255
255
},
256
256
}
257
257
258
- with (
259
- make_quarto_source_bundle (
260
- temp_proj , inspect , AppModes .STATIC_QUARTO , environment , [], [], None
261
- ).bundle as bundle ,
262
- tarfile .open (mode = "r:gz" , fileobj = bundle ) as tar ,
263
- ):
258
+ with make_quarto_source_bundle (
259
+ temp_proj , inspect , AppModes .STATIC_QUARTO , environment , [], [], None
260
+ ).bundle as bundle , tarfile .open (mode = "r:gz" , fileobj = bundle ) as tar :
264
261
names = sorted (tar .getnames ())
265
262
self .assertEqual (
266
263
names ,
@@ -341,12 +338,9 @@ def test_make_quarto_source_bundle_from_project_with_requirements(self):
341
338
},
342
339
}
343
340
344
- with (
345
- make_quarto_source_bundle (
346
- temp_proj , inspect , AppModes .STATIC_QUARTO , environment , [], [], None
347
- ).bundle as bundle ,
348
- tarfile .open (mode = "r:gz" , fileobj = bundle ) as tar ,
349
- ):
341
+ with make_quarto_source_bundle (
342
+ temp_proj , inspect , AppModes .STATIC_QUARTO , environment , [], [], None
343
+ ).bundle as bundle , tarfile .open (mode = "r:gz" , fileobj = bundle ) as tar :
350
344
names = sorted (tar .getnames ())
351
345
self .assertEqual (
352
346
names ,
@@ -405,10 +399,9 @@ def test_make_quarto_source_bundle_from_file(self):
405
399
"engines" : ["markdown" ],
406
400
}
407
401
408
- with (
409
- make_quarto_source_bundle (temp_proj , inspect , AppModes .STATIC_QUARTO , None , [], [], None ).bundle as bundle ,
410
- tarfile .open (mode = "r:gz" , fileobj = bundle ) as tar ,
411
- ):
402
+ with make_quarto_source_bundle (
403
+ temp_proj , inspect , AppModes .STATIC_QUARTO , None , [], [], None
404
+ ).bundle as bundle , tarfile .open (mode = "r:gz" , fileobj = bundle ) as tar :
412
405
names = sorted (tar .getnames ())
413
406
self .assertEqual (
414
407
names ,
0 commit comments