mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Retry e2e test consistently
Summary:Travis tests have been flaky recently: https://travis-ci.org/facebook/react-native/builds Clicking through the last 10 failures, 8 of them are caused by the `npm install` flakiness in the `./e2e-test.sh --packager`. This test works in a very similar way to the iOS e2e test which we retry (see line 18). Let's be consistent. All the random errors are 404s during `npm install` through Sinopia:  JS tests are more stable (saw 1 random failure but likely the test can be fixed), let's not retry them just yet:  **Test plan (required)** Travis tests on this pull request. Closes https://github.com/facebook/react-native/pull/6604 Differential Revision: D3087044 fb-gh-sync-id: a5c74e2578617656c67fd4d05d4f60ffe63a5e2a shipit-source-id: a5c74e2578617656c67fd4d05d4f60ffe63a5e2a
This commit is contained in:
committed by
Facebook Github Bot 1
parent
2ec88028f5
commit
7be18819ec
+1
-1
@@ -19,7 +19,7 @@ script:
|
||||
- if [[ "$TEST_TYPE" = e2e-objc ]]; then travis_retry ./scripts/e2e-test.sh --ios; fi
|
||||
- if [[ "$TEST_TYPE" = js ]]; then npm run flow check; fi
|
||||
- if [[ "$TEST_TYPE" = js ]]; then npm test -- --maxWorkers=1; fi
|
||||
- if [[ "$TEST_TYPE" = js ]]; then ./scripts/e2e-test.sh --packager; fi
|
||||
- if [[ "$TEST_TYPE" = js ]]; then travis_retry ./scripts/e2e-test.sh --packager; fi
|
||||
|
||||
env:
|
||||
matrix:
|
||||
|
||||
Reference in New Issue
Block a user