File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -328,7 +328,7 @@ def test_create_archive_with_include_pattern(self):
328328 (source / '__main__.py' ).touch ()
329329 target = io .BytesIO ()
330330 zipapp .create_archive (
331- source = str (source ),
331+ source = str (source ),
332332 target = target ,
333333 include_pattern = re .compile (r".*\.py" )
334334 )
@@ -348,7 +348,7 @@ def test_create_archive_with_exclude_pattern(self):
348348 (source / '__main__.py' ).touch ()
349349 target = io .BytesIO ()
350350 zipapp .create_archive (
351- source = str (source ),
351+ source = str (source ),
352352 target = target ,
353353 exclude_pattern = re .compile (r".*\.py" )
354354 )
@@ -368,7 +368,7 @@ def test_create_archive_with_include_and_exclude_pattern(self):
368368 (source / '__main__.py' ).touch ()
369369 target = io .BytesIO ()
370370 zipapp .create_archive (
371- source = str (source ),
371+ source = str (source ),
372372 target = target ,
373373 include_pattern = re .compile (r".*\.py" ),
374374 exclude_pattern = re .compile (r".*z.*" )
@@ -479,6 +479,9 @@ def test_info_error(self):
479479 # Program should exit with a non-zero return code.
480480 self .assertTrue (cm .exception .code )
481481
482+ def test_cmdline_create_with_include_pattern (self ):
483+
484+
482485
483486if __name__ == "__main__" :
484487 unittest .main ()
You can’t perform that action at this time.
0 commit comments