1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-21 11:00:08 +00:00

Test all *.spec files on travis

This commit is contained in:
Dominik Ritter 2018-07-15 22:23:24 +02:00
parent 6c4a3e8a1b
commit 21f2d1a377
2 changed files with 16 additions and 11 deletions

View file

@ -74,14 +74,4 @@ before_script:
- "zsh --version"
script:
- test/powerlevel9k.spec
- test/functions/utilities.spec
- test/functions/colors.spec
- test/functions/icons.spec
- test/segments/command_execution_time.spec
- test/segments/dir.spec
- test/segments/rust_version.spec
- test/segments/go_version.spec
- test/segments/vcs.spec
- test/segments/kubecontext.spec
- test/segments/laravel_version.spec
- test/suite.spec

15
test/suite.spec Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/env zsh
#vim:ft=zsh ts=2 sw=2 sts=2 et fenc=utf-8
local failed=false
for test in **/*.spec; do
if [[ "${test}" == "test/suite.spec" ]]; then
continue;
fi
./${test} || failed=true
done
if [[ "${failed}" == "true" ]]; then
exit 1
fi