Various e2e test bugfixes. The test runner now compiles fission bundle and cli, installs helm, installs kubectl, and uses helm to install fission, run all scripts under test/tests/, and uninstalls fission. The change also removes go tip tests -- I think we can get by without them, but we'll add them back if the next go version update brings some surprises.
13 lines
230 B
Bash
Executable File
13 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
# This doesn't test fission, just the test framework. It ensures we
|
|
# have the right environment, that's all.
|
|
|
|
echo "Test test, please ignore."
|
|
|
|
echo $FISSION_URL
|
|
echo $FISSION_ROUTER
|
|
which fission
|