File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 99
99
runs-on : macos-latest
100
100
steps :
101
101
- uses : actions/checkout@v4
102
- - run : env PYTESTFLAGS="--verbose -p no:cacheprovider --color=yes" test/macos-script.sh
102
+ - run : env PYTESTFLAGS="--verbose -p no:cacheprovider --color=yes -k '(TestTar and test_25) or TestPs' " test/macos-script.sh
Original file line number Diff line number Diff line change @@ -299,6 +299,7 @@ _comp_cmd_tar__preparse_cmdline()
299
299
# Generate completions for -f/--file.
300
300
_comp_cmd_tar__file_option ()
301
301
{
302
+ set -x
302
303
local ext=" $1 "
303
304
304
305
case " $tar_mode " in
@@ -310,6 +311,7 @@ _comp_cmd_tar__file_option()
310
311
_comp_compgen_filedir " $ext "
311
312
;;
312
313
esac
314
+ set +x
313
315
}
314
316
315
317
# Returns truth if option requires argument. No equal sign must be pasted.
@@ -510,6 +512,7 @@ _comp_cmd_tar__is_bsdtar()
510
512
511
513
_comp_cmd_tar__detect_ext ()
512
514
{
515
+ set -x
513
516
local tars=' @(@(tar|spkg)?(.@(Z|[bgx]z|bz2|lz?(ma|o)|zst))|t@([abglx]z|b?(z)2|zst)|cbt|gem|xbps)'
514
517
if _comp_cmd_tar__is_bsdtar; then
515
518
# https://github.com/libarchive/libarchive/wiki/LibarchiveFormats
@@ -562,6 +565,7 @@ _comp_cmd_tar__detect_ext()
562
565
;;
563
566
esac
564
567
fi
568
+ set +x
565
569
}
566
570
567
571
_comp_cmd_tar__gnu ()
@@ -787,6 +791,7 @@ _comp_cmd_tar__posix()
787
791
788
792
local ext
789
793
794
+ set -x
790
795
_comp_cmd_tar__detect_ext
791
796
792
797
_comp_cmd_tar__adjust_PREV_from_old_option
@@ -796,6 +801,7 @@ _comp_cmd_tar__posix()
796
801
_comp_cmd_tar__try_mode && return
797
802
798
803
_comp_cmd_tar__try_list_archive && return
804
+ set +x
799
805
800
806
# file completion on relevant files
801
807
_comp_compgen_filedir
You can’t perform that action at this time.
0 commit comments