mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Use -S when invoking Python for littlecheck
This prevents needless imports. It speeds up the test time by ~2 seconds.
This commit is contained in:
parent
9f984ee897
commit
3040486968
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ function test_littlecheck_file
|
|||
set -l file $argv[1]
|
||||
echo -n "Testing file $file ... "
|
||||
set starttime (timestamp)
|
||||
$python ../littlecheck.py \
|
||||
$python -S ../littlecheck.py \
|
||||
-s fish=../test/root/bin/fish \
|
||||
-s fish_test_helper=../test/root/bin/fish_test_helper \
|
||||
$file
|
||||
|
|
Loading…
Reference in a new issue