13 lines
140 B
Bash
Executable File
13 lines
140 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. script/bootstrap
|
|
|
|
script/build
|
|
|
|
export GITBACKUPS_ENV=test
|
|
|
|
cd .gopath/src/github.com/github/gh-ost
|
|
go test ./go/...
|