mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
15 lines
376 B
Bash
Executable File
15 lines
376 B
Bash
Executable File
# Top level test script to start all other tests
|
|
|
|
set -ex
|
|
|
|
go test -v $(go list ./... | grep -v vendor | grep -v examples | grep -v tool | grep -v fn)
|
|
cd fn && make build && make test
|
|
# TODO: should we install fn here to use throughout?
|
|
FN="$(pwd)/fn"
|
|
cd ..
|
|
|
|
# TODO: Test a bunch of the examples using fn test when ready
|
|
# checker tests env vars
|
|
cd examples/checker
|
|
./test.sh
|