mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-08 07:17:12 +02:00
13 lines
231 B
Bash
Executable File
13 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
(cd jsonnet; go build)
|
|
source tests_path.source
|
|
export DISABLE_LIB_TESTS=true
|
|
export DISABLE_FMT_TESTS=true
|
|
export DISABLE_ERROR_TESTS=true
|
|
export JSONNET_BIN="$PWD/jsonnet/jsonnet"
|
|
cd "$TESTS_PATH"
|
|
./tests.sh
|