mirror of
https://github.com/rancher/os.git
synced 2025-07-15 07:41:39 +00:00
8 lines
92 B
Plaintext
8 lines
92 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
cd $(dirname $0)/..
|
||
|
|
||
|
echo Running tests
|
||
|
go test -cover -tags=test ./...
|