Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Disable failing tests #20622

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -674,16 +675,18 @@ workflows:
requires:
- checkout_code

# Disabled on master.

# End-to-end tests
- test_objc_end_to_end:
filters: *filter-ignore-gh-pages
requires:
- checkout_code
# - 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
# - 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
Expand All @@ -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:
Expand Down