@@ -544,7 +544,7 @@ jobs:
544544 test-new-tests-dev :
545545 name : Test new tests for flakes (dev)
546546 needs : ['optimize-ci', 'changes', 'build-native', 'build-next']
547- if : ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
547+ if : ${{ false && needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
548548
549549 strategy :
550550 fail-fast : false
@@ -566,7 +566,7 @@ jobs:
566566 test-new-tests-start :
567567 name : Test new tests for flakes (prod)
568568 needs : ['optimize-ci', 'changes', 'build-native', 'build-next']
569- if : ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
569+ if : ${{ false && needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
570570
571571 strategy :
572572 fail-fast : false
@@ -589,7 +589,7 @@ jobs:
589589 name : Test new tests when deployed
590590 needs :
591591 ['optimize-ci', 'test-prod', 'test-new-tests-dev', 'test-new-tests-start']
592- if : ${{ needs.optimize-ci.outputs.skip == 'false' }}
592+ if : ${{ false && needs.optimize-ci.outputs.skip == 'false' }}
593593
594594 strategy :
595595 fail-fast : false
@@ -942,8 +942,7 @@ jobs:
942942 secrets : inherit
943943
944944 tests-pass :
945- needs :
946- [
945+ needs : [
947946 ' build-native' ,
948947 ' build-next' ,
949948 ' lint' ,
@@ -966,9 +965,9 @@ jobs:
966965 ' test-next-swc-wasm' ,
967966 ' test-turbopack-dev' ,
968967 ' test-turbopack-integration' ,
969- ' test-new-tests-dev' ,
970- ' test-new-tests-start' ,
971- ' test-new-tests-deploy' ,
968+ # 'test-new-tests-dev',
969+ # 'test-new-tests-start',
970+ # 'test-new-tests-deploy',
972971 ' test-turbopack-production' ,
973972 ' test-turbopack-production-integration' ,
974973 ' test-unit-windows' ,
0 commit comments