summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-07-08 15:23:58 +1000
committerJesse Duffield <jessedduffield@gmail.com>2023-07-09 20:57:18 +1000
commitc7a3b69eb92dd5b543769cafcb2992da1ee8ed4d (patch)
treee4b00fea75a56244b18d9b426620ffb4b36cc4f0 /.github
parentb19943af01c4f3f1bc7d358194e4c5b99f5b997b (diff)
Remove retry logic in integration tests
I want to see how we go removing all retry logic within a test. Lazygit should be trusted to tell us when it's no longer busy, and if it that proves false we should fix the issue in the code rather than being lenient in the tests
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 05a5a0f73..3494e6a40 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -68,9 +68,8 @@ jobs:
restore-keys: |
${{runner.os}}-go-
- name: Test code
- # LONG_WAIT_BEFORE_FAIL means that for a given test assertion, we'll wait longer before failing
run: |
- LONG_WAIT_BEFORE_FAIL=true go test pkg/integration/clients/*.go
+ go test pkg/integration/clients/*.go
build:
runs-on: ubuntu-latest
env: