mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
14 lines
245 B
Bash
Executable File
14 lines
245 B
Bash
Executable File
#!/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 "$@"
|