I added a regression to the file resource. This was caused by two different bugs that I added when I switched the API to use checkapply. I would have caught these issues, except my test cases *also* had a bug! I think I've fixed all three issues now. Lastly, when running on travis, the tests behave very differently! Some of the tests actually fail, and it's not clear why. As a result, we had to disable them! I guess you get what you pay for.
15 lines
515 B
Bash
Executable File
15 lines
515 B
Bash
Executable File
#!/bin/bash -e
|
|
# NOTES:
|
|
# * this is a simple shell based `mgmt` test case
|
|
# * it is recommended that you run mgmt wrapped in the timeout command
|
|
# * it is recommended that you run mgmt with --no-watch
|
|
# * it is recommended that you run mgmt --converged-timeout=<seconds>
|
|
# * you can run mgmt with --max-runtime=<seconds> in special scenarios
|
|
# * you can get a separate etcd going by sourcing etcd.sh: . etcd.sh
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
timeout --kill-after=3s 1s ./mgmt --help # hello world!
|