Disable failing tests (#20622)
Summary: `test_detox_end_to_end` and `test_objc_end_to_end` are both failing on master. This is polluting internal diffs that do not introduce failures. As we just now started tracking Circle CI on our internal builds, I want to make sure we only nag internal diffs when the failure can actually be attributed to the diff. The failures in the e2e tests precede the Circle CI integration and are adding unnecessary noise. Going forward, we will immediately go back to a diff and push the author to fix the broken CI, so this PR is a temporary fix. Pull Request resolved: https://github.com/facebook/react-native/pull/20622 Differential Revision: D9272360 Pulled By: hramos fbshipit-source-id: 2f8d22e35d301aa7eb67ed08f6deed21bf971acd
This commit is contained in:
parent
16b3783b9d
commit
e0465bf8b9
|
@ -467,6 +467,7 @@ jobs:
|
|||
path: ~/react-native/reports/junit
|
||||
|
||||
# Runs end to end tests (Detox)
|
||||
# Disabled.
|
||||
test_detox_end_to_end:
|
||||
<<: *macos_defaults
|
||||
steps:
|
||||
|
@ -674,16 +675,18 @@ workflows:
|
|||
requires:
|
||||
- checkout_code
|
||||
|
||||
# End-to-end tests
|
||||
- test_objc_end_to_end:
|
||||
filters: *filter-ignore-gh-pages
|
||||
requires:
|
||||
- checkout_code
|
||||
# Disabled on master.
|
||||
|
||||
- test_detox_end_to_end:
|
||||
filters: *filter-ignore-gh-pages
|
||||
requires:
|
||||
- checkout_code
|
||||
# End-to-end tests
|
||||
# - test_objc_end_to_end:
|
||||
# filters: *filter-ignore-gh-pages
|
||||
# requires:
|
||||
# - checkout_code
|
||||
|
||||
# - test_detox_end_to_end:
|
||||
# filters: *filter-ignore-gh-pages
|
||||
# requires:
|
||||
# - checkout_code
|
||||
|
||||
|
||||
# Only runs on vX.X.X tags if all tests are green
|
||||
|
@ -698,7 +701,7 @@ workflows:
|
|||
- test_javascript
|
||||
- test_objc
|
||||
- test_android
|
||||
- test_objc_end_to_end
|
||||
# - test_objc_end_to_end
|
||||
|
||||
# Only runs on PRs
|
||||
analyze:
|
||||
|
|
Loading…
Reference in New Issue