We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 158e0c6 commit e3a92c6Copy full SHA for e3a92c6
scripts/run-oats-tests.sh
@@ -2,10 +2,12 @@
2
3
set -euo pipefail
4
5
-cd oats/yaml
6
-go mod tidy
7
-go install github.com/onsi/ginkgo/v2/ginkgo
+# TODO Pin to specific version and then update with renovate
+export OATS_VERSION=latest
+
8
export TESTCASE_SKIP_BUILD=true
9
export TESTCASE_TIMEOUT=5m
10
-export TESTCASE_BASE_PATH=../../docker
11
-ginkgo -r
+export TESTCASE_BASE_PATH=./docker
12
+go install "github.com/grafana/oats@${OATS_VERSION}"
13
+${GOPATH}/bin/oats ./docker/docker-compose-aspnetcore
0 commit comments