Skip to content

Commit

Permalink
Reorder --run_tests flag to never get swallowed
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPansino committed Jan 23, 2025
1 parent c5f0f98 commit 17e1974
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
- name: Run E2E tests
run: |
cd tests/e2e
./e2e-tests.sh --k8s_version ${{ matrix.k8sVersion }} --license_key ${{ secrets.K8S_AGENTS_E2E_LICENSE_KEY }} --run_tests
./e2e-tests.sh --run_tests --k8s_version ${{ matrix.k8sVersion }} --license_key ${{ secrets.K8S_AGENTS_E2E_LICENSE_KEY }}
build:
name: Build Docker image
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ e2e-tests: ## Run e2e tests with k8s version specified by $E2E_K8S_VERSION
exit 1; \
fi; \
done
cd tests/e2e && ./e2e-tests.sh --k8s_version $(E2E_K8S_VERSION) --license_key $(LICENSE_KEY) --run_tests
cd tests/e2e && ./e2e-tests.sh --run_tests --k8s_version $(E2E_K8S_VERSION) --license_key $(LICENSE_KEY)

.PHONY: all-e2e-tests
all-e2e-tests: ## Run e2e tests with all k8s versions specified by $ALL_E2E_K8S_VERSIONS
Expand Down

0 comments on commit 17e1974

Please sign in to comment.