Skip to content

Commit 7f6043d

Browse files
authored
Merge pull request #613 from mbaldessari/fix-qe-command
Fix path when invoking the qe run_test.sh script
2 parents cacdd23 + 9a24f6f commit 7f6043d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ argo-healthcheck: ## Checks if all argo applications are synced
214214
.PHONY: qe-tests
215215
qe-tests: ## Runs the tests that QE runs
216216
@set -e; if [ -f ./tests/interop/run_tests.sh ]; then \
217-
./tests/interop/run_tests.sh; \
217+
pushd ./tests/interop; ./run_tests.sh; popd; \
218218
else \
219219
echo "No ./tests/interop/run_tests.sh found skipping"; \
220220
fi

0 commit comments

Comments
 (0)