@@ -384,7 +384,7 @@ jobs:
384
384
fi
385
385
export TS_DEBUG_DISCO=true
386
386
TEST_RETRIES="--rerun-fails=2"
387
- if [ "${{ github.ref }}" == "refs/heads/main" ]; then
387
+ if [ true ]; then
388
388
# on main, run tests without retries
389
389
TEST_RETRIES=""
390
390
fi
@@ -564,7 +564,7 @@ jobs:
564
564
fi
565
565
566
566
TEST_RETRIES="--rerun-fails=2 --rerun-fails-max-failures=50"
567
- if [ "${{ github.ref }}" == "refs/heads/main" ]; then
567
+ if [ true ]; then
568
568
# on main, run tests without retries
569
569
TEST_RETRIES=""
570
570
fi
@@ -649,7 +649,7 @@ jobs:
649
649
TS_DEBUG_DISCO : " true"
650
650
run : |
651
651
export TEST_RETRIES="2"
652
- if [ "${{ github.ref }}" == "refs/heads/main" ]; then
652
+ if [ true ]; then
653
653
# on main, run tests without retries
654
654
export TEST_RETRIES=""
655
655
fi
@@ -703,7 +703,7 @@ jobs:
703
703
- name : Run Tests
704
704
run : |
705
705
TEST_RETRIES="--rerun-fails=2 --rerun-fails-abort-on-data-race"
706
- if [ "${{ github.ref }}" == "refs/heads/main" ]; then
706
+ if [ true ]; then
707
707
# on main, run tests without retries
708
708
TEST_RETRIES=""
709
709
fi
@@ -759,7 +759,7 @@ jobs:
759
759
POSTGRES_VERSION : " 17"
760
760
run : |
761
761
TEST_RETRIES="--rerun-fails=2 --rerun-fails-abort-on-data-race"
762
- if [ "${{ github.ref }}" == "refs/heads/main" ]; then
762
+ if [ true ]; then
763
763
# on main, run tests without retries
764
764
TEST_RETRIES=""
765
765
fi
@@ -893,7 +893,7 @@ jobs:
893
893
- name : Run Tests with Premium License
894
894
run : |
895
895
# Only retry on PRs, not on main
896
- if [ "${{ github.ref }}" != "refs/heads/main" ]; then
896
+ if [ false ]; then
897
897
export CODER_E2E_TEST_RETRIES=2
898
898
fi
899
899
pnpm playwright:test --forbid-only --workers 1
0 commit comments