mirror of
https://github.com/rancher/cli.git
synced 2026-02-05 18:48:50 +01:00
9 lines
99 B
Bash
Executable File
9 lines
99 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
echo Running tests
|
|
|
|
go test -race -cover -tags=test ./...
|