tests: in Travis, also run the backend tests

This change introduces automatic execution of the backend tests in Travis.

Implements #2351.
This commit is contained in:
John McLear 2020-04-03 02:27:05 +01:00 committed by GitHub
parent c2ea2b3a6d
commit 93180c287b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 56 additions and 0 deletions

View file

@ -1,4 +1,6 @@
#!/bin/bash
if [ -z "${SAUCE_USERNAME}" ]; then echo "SAUCE_USERNAME is unset - exiting"; exit 1; fi
if [ -z "${SAUCE_ACCESS_KEY}" ]; then echo "SAUCE_ACCESS_KEY is unset - exiting"; exit 1; fi
# do not continue if there is an error
set -eu