forked from Deuxfleurs/bottin
9a8c19ec0f
V2 the test end-to-end, Tests made similar to V1.0, Add the possibility to pararellize the tests, Create an environnement for easy integration of news test,
12 lines
301 B
Bash
Executable file
12 lines
301 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
echo $BOTTIN_DEFAULT_ADMIN_PW
|
|
consul agent -dev > /dev/null 2>&1 &
|
|
sleep 2
|
|
cp test/config.json.test config.json
|
|
./bottin > /dev/null 2>&1 &
|
|
sleep 1
|
|
./test/test -test.v -test.failfast -test.short -test.run TestPrincipal
|
|
./test/test -test.v -test.failfast -test.run TestPrincipal/B=
|