Skip to content

Commit

Permalink
add debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
ptiurin committed Jan 17, 2024
1 parent 62204e2 commit c5ce05b
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions .github/workflows/integration-tests-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,16 +83,24 @@ jobs:
API_ENDPOINT: "api.${{ inputs.environment }}.firebolt.io"
ACCOUNT_NAME: "firebolt"
run: |
pytest --last-failed -o log_cli=true -o log_cli_level=INFO tests/functional/ --alluredir=allure-results
pytest --last-failed -o log_cli=true -o log_cli_level=INFO tests/functional/ -k constraints_wrong_column_data_types --alluredir=allure-results
- name: Save failed tests
id: cache-tests-save
uses: actions/cache/save@v3
if: failure()
- name: Setup upterm session
uses: lhotari/action-upterm@v1
with:
path: |
.pytest_cache/v/cache/lastfailed
key: ${{ steps.cache-tests-restore.outputs.cache-primary-key }}
## limits ssh access and adds the ssh public key for the user which triggered the workflow
limit-access-to-actor: true
## limits ssh access and adds the ssh public keys of the listed GitHub users
limit-access-to-users: ptiurin

# - name: Save failed tests
# id: cache-tests-save
# uses: actions/cache/save@v3
# if: failure()
# with:
# path: |
# .pytest_cache/v/cache/lastfailed
# key: ${{ steps.cache-tests-restore.outputs.cache-primary-key }}

- name: Get Allure history
uses: actions/checkout@v2
Expand Down

0 comments on commit c5ce05b

Please sign in to comment.