tests: Exit early if python is missing for littlecheck

This commit is contained in:
Fabian Boehm 2024-01-27 18:34:59 +01:00
parent 019a082d5d
commit c735dafb98

View File

@ -25,6 +25,10 @@ if test (count $files_to_test) -gt 1
end end
set -g python (__fish_anypython) set -g python (__fish_anypython)
or begin
say red "Python is not installed. These tests require python."
exit 125
end
# Test littlecheck files. # Test littlecheck files.
set -l skipped 0 set -l skipped 0