mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
22eb2df602
* Rename to grafana-server / move scripts into new directory * Change grafana-server step command * Change scripts paths * Use test grabpl version * Update run-suite script * Further name updates * Update grabpl version * Update contribute/style-guides/e2e-core.md Co-authored-by: Maria Alexandra <239999+axelavargas@users.noreply.github.com> Co-authored-by: Maria Alexandra <239999+axelavargas@users.noreply.github.com>
14 lines
321 B
Bash
Executable File
14 lines
321 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. scripts/grafana-server/variables
|
|
|
|
if [ "$BASE_URL" != "" ]; then
|
|
echo -e "BASE_URL set, skipping starting server"
|
|
else
|
|
# Start it in the background
|
|
./scripts/grafana-server/start-server 2>&1 > scripts/grafana-server/server.log &
|
|
./scripts/grafana-server/wait-for-grafana
|
|
fi
|
|
|
|
./e2e/run-suite "$@"
|