Skip to content

Commit ed72885

Browse files
authored
fix(BDDs): Give the correct path to run the experiment BDDs (#6)
* fix(path): Give the correct path for test execution Signed-off-by: Udit Gaurav <[email protected]>
1 parent 649304a commit ed72885

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ cd chaos-ci-lib
2525
##Install litmus if it is not already installed
2626
if [ "$INSTALL_LITMUS" = "true" ]
2727
then
28-
go test tests/install-litmus_test.go -v -count=1
28+
go test litmus/install-litmus_test.go -v -count=1
2929
fi
3030

3131
if [ "$EXPERIMENT_NAME" == "all" ]; then
@@ -42,5 +42,5 @@ fi
4242
##litmus cleanup
4343
if [ "$LITMUS_CLEANUP" = "true" ]
4444
then
45-
go test tests/uninstall-litmus_test.go -v -count=1
45+
go test litmus/uninstall-litmus_test.go -v -count=1
4646
fi

0 commit comments

Comments
 (0)