mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 19:51:50 +00:00
11 lines
303 B
Bash
Executable File
11 lines
303 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This script runs the backend integration tests against a candidate server image.
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")/../../"
|
|
SG_ROOT=$(pwd)
|
|
set -ex
|
|
|
|
# Setup single-server instance and run tests
|
|
./dev/ci/run-integration.sh "${SG_ROOT}/dev/ci/backend-integration-against-server.sh"
|