Skip to content

Commit

Permalink
fix(BDDs): Give the correct path to run the experiment BDDs (#6)
Browse files Browse the repository at this point in the history
* fix(path): Give the correct path for test execution

Signed-off-by: Udit Gaurav <[email protected]>
  • Loading branch information
uditgaurav authored Jun 15, 2020
1 parent 649304a commit ed72885
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ cd chaos-ci-lib
##Install litmus if it is not already installed
if [ "$INSTALL_LITMUS" = "true" ]
then
go test tests/install-litmus_test.go -v -count=1
go test litmus/install-litmus_test.go -v -count=1
fi

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

0 comments on commit ed72885

Please sign in to comment.