You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
245 B
13 lines
245 B
#!/bin/bash
|
|
|
|
. e2e/variables
|
|
|
|
if [ "$BASE_URL" != "" ]; then
|
|
echo -e "BASE_URL set, skipping starting server"
|
|
else
|
|
# Start it in the background
|
|
./e2e/start-server 2>&1 > e2e/server.log &
|
|
./e2e/wait-for-grafana
|
|
fi
|
|
|
|
./e2e/run-suite "$@"
|
|
|