mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-10-07 07:51:26 +02:00
* delete package app/watchers since we're now using shared informers * used shared informers for events and listing resources * install moq in travis test script
10 lines
143 B
Bash
Executable File
10 lines
143 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
echo "install moq"
|
|
go get github.com/matryer/moq
|
|
|
|
echo "Running tests on Travis"
|
|
make test
|