@@ -544,7 +544,7 @@ jobs:
544544test-new-tests-dev :
545545name :Test new tests for flakes (dev)
546546needs :['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
549549strategy :
550550fail-fast :false
@@ -566,7 +566,7 @@ jobs:
566566test-new-tests-start :
567567name :Test new tests for flakes (prod)
568568needs :['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
571571strategy :
572572fail-fast :false
@@ -589,7 +589,7 @@ jobs:
589589name :Test new tests when deployed
590590needs :
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
594594strategy :
595595fail-fast :false
@@ -942,8 +942,7 @@ jobs:
942942secrets :inherit
943943
944944tests-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' ,