Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Testkube dev - overwrite branch on test run #506

Merged
merged 1 commit into from
May 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
kubectl testkube create test -f ./test/postman/TestKube-Sanity.postman_collection.json --name sanity --type postman/collection -v api_uri=http://testkube-api-server:8088 -v test_api_uri=http://testkube-api-server:8088 -v test_type=postman/collection -v test_name=fill-me -v execution_name=fill-me

- name: Run Postman sanity tests
run: kubectl testkube run test sanity -f
run: kubectl testkube run test sanity -f --git-branch develop

- name: (Re)create Dashboard E2E tests (from CRD)
working-directory: ./testkube-repo
Expand All @@ -162,7 +162,7 @@ jobs:
kubectl testkube create testsuite -f ./test/suites/staging-testsuite.json --name staging-testsuite

- name: Run staging testsuite
run: kubectl testkube run testsuite staging-testsuite -f
run: kubectl testkube run testsuite staging-testsuite -f --git-branch develop

notify_slack_if_test_suite_succeeds:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/helm-deploy-testkube-charts-develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ jobs:
kubectl testkube create test -f ./test/postman/TestKube-Sanity.postman_collection.json --name sanity --type postman/collection -v api_uri=http://testkube-api-server:8088 -v test_api_uri=http://testkube-api-server:8088 -v test_type=postman/collection -v test_name=fill-me -v execution_name=fill-me

- name: Run Postman sanity tests
run: kubectl testkube run test sanity -f
run: kubectl testkube run test sanity -f --git-branch develop

- name: (Re)create Dashboard E2E tests (from CRD)
working-directory: ./testkube-repo
Expand All @@ -200,7 +200,7 @@ jobs:
kubectl testkube create testsuite -f ./test/suites/staging-testsuite.json --name staging-testsuite

- name: Run staging testsuite
run: kubectl testkube run testsuite staging-testsuite -f
run: kubectl testkube run testsuite staging-testsuite -f --git-branch develop

notify_slack_if_test_suite_succeeds:
runs-on: ubuntu-latest
Expand Down