From 093202f9e227b75702044121eb88e6f75d446e51 Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Tue, 1 Oct 2019 17:49:22 +0000 Subject: [PATCH] fix: disable browserstack tests (#2610) --- .circleci/config.yml | 43 ++++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5d22aa7df..5f3f52eee 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,4 +1,3 @@ - # job_environment will setup the environment for any job being executed. job_environment: &job_environment NODE_ENV: test @@ -54,7 +53,6 @@ integration_job: &integration_job when: always path: /tmp/circleci-test-results - version: 2 jobs: # npm_dependencies will install the dependencies used by all other steps. @@ -258,10 +256,11 @@ workflows: <<: *filter_develop requires: - npm_dependencies - - test_integration_chrome_local: - <<: *filter_develop - requires: - - build_assets + # TODO: uncomment when we revisit browserstack + # - test_integration_chrome_local: + # <<: *filter_develop + # requires: + # - build_assets # TODO: uncomment when more reliable # - test_integration_firefox_local: # <<: *filter_develop @@ -283,18 +282,19 @@ workflows: <<: *filter_deploy requires: - npm_dependencies - - test_integration_chrome: - <<: *filter_deploy - requires: - - build_assets - - test_integration_firefox: - <<: *filter_deploy - requires: - - build_assets - - test_integration_edge: - <<: *filter_deploy - requires: - - build_assets + # TODO: uncomment when we revisit browserstack + # - test_integration_chrome: + # <<: *filter_deploy + # requires: + # - build_assets + # - test_integration_firefox: + # <<: *filter_deploy + # requires: + # - build_assets + # - test_integration_edge: + # <<: *filter_deploy + # requires: + # - build_assets # TODO: uncomment when more reliable # - test_integration_ie: # <<: *filter_deploy @@ -309,9 +309,10 @@ workflows: requires: - lint - test_unit - - test_integration_chrome - - test_integration_firefox - - test_integration_edge + # TODO: uncomment when we revisit browserstack + # - test_integration_chrome + # - test_integration_firefox + # - test_integration_edge # TODO: uncomment when more reliable # - test_integration_ie # - test_integration_safari