Skip to content

Commit

Permalink
fix: workflow suites - missing workflows added (#5816)
Browse files Browse the repository at this point in the history
* workflow suites - missing workflows added

* run script - missing special cases added
  • Loading branch information
tkonieczny committed Sep 6, 2024
1 parent 08aa00e commit dcb7a1f
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/cypress/executor-tests/crd-workflow/smoke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ spec:
steps:
- name: Run tests
parallel:
maxCount: 3
maxCount: 2
shards:
testFiles: 'glob("cypress/e2e/**/*.js")'
description: '{{ join(map(shard.testFiles, "relpath(_.value, \"cypress/e2e\")"), ", ") }}'
Expand Down
8 changes: 4 additions & 4 deletions test/k6/executor-tests/crd-workflow/smoke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ metadata:
core-tests: workflows
spec:
config:
vus: {type: integer, default: 10}
duration: {type: string, default: '5s'}
vus: {type: integer, default: 2}
duration: {type: string, default: '2s'}
workers: {type: integer, default: 3}
content:
git:
Expand Down Expand Up @@ -189,8 +189,8 @@ metadata:
core-tests: workflows
spec:
config:
vus: {type: integer, default: 10}
duration: {type: string, default: '5s'}
vus: {type: integer, default: 2}
duration: {type: string, default: '2s'}
workers: {type: integer, default: 3}
content:
git:
Expand Down
3 changes: 3 additions & 0 deletions test/scripts/executor-tests/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,7 @@ main() {
postman-smoke
playwright-smoke
soapui-smoke
workflow-artillery-smoke
workflow-cypress-smoke
workflow-gradle-smoke
workflow-jmeter-smoke
Expand All @@ -547,6 +548,7 @@ main() {
workflow-playwright-smoke
workflow-postman-smoke
workflow-soapui-smoke
workflow-special-cases-failures
;;
smoke)
artillery-smoke
Expand Down Expand Up @@ -596,6 +598,7 @@ main() {
workflow-playwright-smoke
workflow-postman-smoke
workflow-soapui-smoke
workflow-special-cases-failures
;;
workflow-special)
workflow-special-cases-failures
Expand Down
1 change: 1 addition & 0 deletions test/suites/test-workflows/cypress-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ spec:
- name: cypress-workflow-smoke-13-template-sub-step
- name: cypress-workflow-smoke-12.7.0
- name: cypress-workflow-smoke-13-junit-report
- name: distributed-cypress-workflow-smoke-13
- name: cypress-workflow-smoke-matrix
2 changes: 2 additions & 0 deletions test/suites/test-workflows/jmeter-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ spec:
- name: jmeter-workflow-smoke
- name: jmeter-workflow-smoke-shell-artifacts
- name: jmeter-workflow-smoke-from-template
- name: distributed-jmeter-workflow-smoke
- name: distributed-jmeter-workflow-smoke-shell-artifacts
2 changes: 2 additions & 0 deletions test/suites/test-workflows/k6-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ spec:
- name: k6-workflow-smoke-template
- name: k6-workflow-smoke-template-without-checkout-step
- name: k6-workflow-smoke-artifacts
- name: distributed-k6-workflow-smoke
- name: distributed-k6-workflow-smoke-artifacts
1 change: 1 addition & 0 deletions test/suites/test-workflows/playwright-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ spec:
- name: playwright-workflow-smoke-v1.32.3-shell
- name: playwright-workflow-smoke-artifacts-double-asterisk
- name: playwright-workflow-smoke-template
- name: distributed-playwright-workflow-smoke-artifacts
1 change: 1 addition & 0 deletions test/suites/test-workflows/postman-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ metadata:
spec:
steps:
- execute:
parallelism: 2
workflows:
- name: postman-workflow-smoke
- name: postman-workflow-smoke-without-envs
Expand Down

0 comments on commit dcb7a1f

Please sign in to comment.