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

Feature/integrate smoke tests #2370

Merged
merged 6 commits into from
May 4, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build-&-publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ jobs:
deploy_report_page: false
archive_results: true
run_flaky_tests: false
run_smoke_tests: ${{ github.ref != 'refs/heads/staging' && github.base_ref != 'staging' && github.ref != 'refs/heads/master' && github.base_ref != 'master' }}
retry_failures: true
TENDERLY_FORK_ID: ${{ secrets.TENDERLY_FORK_ID }}
DEVOPS_CHANNEL_WEBHOOK_URL: ${{ secrets.DEVOPS_CHANNEL_WEBHOOK_URL }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/system_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ on:
description: '0box branch to deploy'
default: 'staging'
required: true
test_file_filter:
description: 'Comma separated list of test files to run (eg. zwalletcli_register_wallet_test.go, zwalletcli_send_and_balance_test.go). If supplied, the PR will NOT be notified of the test result'
default: ''
run_smoke_tests:
description: 'Run subset of system tests (smoke tests) for faster feedback (NOT FOR PRS POINTED TO STAGING)'
default: 'false'
required: false
skip_tests:
description: '(LAST RESORT ONLY) Skip system tests. This will allow a PR to merge without requiring a green test run. *By using you certify that the code being merged is not causing system tests to fail*'
Expand All @@ -56,10 +56,10 @@ jobs:
validator_branch: ${{ github.event.inputs.blobber_branch }}
zbox_branch: ${{ github.event.inputs.zbox_branch }}
authorizer_branch: ${{ github.event.inputs.authorizer_branch }}
test_file_filter: ${{ github.event.inputs.test_file_filter }}
zs3server_branch: ${{ github.event.inputs.zs3server_branch }}
gosdk_branch: ${{ github.event.inputs.gosdk_branch }}
skip_tests: ${{ github.event.inputs.skip_tests }}
run_smoke_tests: ${{ github.event.inputs.run_smoke_tests }}
secrets:
SVC_ACCOUNT_SECRET: ${{ secrets.SVC_ACCOUNT_SECRET }}
DEV1KC: ${{ secrets.DEV1KC }}
Expand Down