mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-08-04 14:37:34 +00:00
Force remove integration test logfiles (#884)
* Don't bother cleaning up integration test log files on Travis * Update src/shadowbox/integration_test/run_action.sh Co-authored-by: Vinicius Fortuna <fortuna@users.noreply.github.com> Co-authored-by: Vinicius Fortuna <fortuna@users.noreply.github.com>
This commit is contained in:
parent
aea8fa84e8
commit
b28b4531b4
1 changed files with 3 additions and 1 deletions
|
|
@ -26,7 +26,9 @@ declare -i result=0
|
|||
|
||||
if ./test.sh > "${LOGFILE}" 2>&1 ; then
|
||||
echo "Test Passed!"
|
||||
rm "${LOGFILE}"
|
||||
# Removing the log file sometimes fails on Travis. There's no point in us cleaning it up
|
||||
# on a CI build anyways.
|
||||
rm -f "${LOGFILE}"
|
||||
else
|
||||
result=$?
|
||||
echo "Test Failed! Logs:"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue