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

Integration test improvements #2858

Merged
merged 11 commits into from
Mar 7, 2024
Prev Previous commit
Next Next commit
remove retries for now
  • Loading branch information
hubertdeng123 committed Mar 7, 2024
commit 9c4fbfc7f90e31cdeac5bae68f00bbf5d349f93c
18 changes: 4 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,22 +86,12 @@ jobs:
sudo chmod +x "${{ matrix.compose_path }}/docker-compose"

- name: Install self-hosted
uses: nick-fields/retry@v3
with:
max_attempts: 3
timeout_minutes: 10
retry_on: error
command: |
export REPORT_SELF_HOSTED_ISSUES=1
./install.sh
run: |
export REPORT_SELF_HOSTED_ISSUES=1
./install.sh

- name: Integration Test
uses: nick-fields/retry@v3
with:
max_attempts: 3
timeout_minutes: 25
retry_on: error
command: ./integration-test.sh --${{ matrix.test_type }}
run: ./integration-test.sh --${{ matrix.test_type }}

- name: Inspect failure
if: failure()
Expand Down
Loading