Avoid Travis CI error for zsh on linux: $ ./test/support/travisci_deps.sh This job is running on container-based infrastructure, which does not allow use of 'sudo', setuid, and setgid executables. If you require sudo, add 'sudo: required' to your .travis.yml
19 lines
222 B
YAML
19 lines
222 B
YAML
os:
|
|
- linux
|
|
- osx
|
|
|
|
env:
|
|
- TEST_SHELLS=bash
|
|
- TEST_SHELLS=zsh
|
|
|
|
sudo: required
|
|
|
|
install:
|
|
- ./test/support/travisci_deps.sh
|
|
|
|
before_script:
|
|
- echo -e "test_repo_11\ntest_repo_1" | sort
|
|
|
|
script:
|
|
- ./run_tests.sh
|