diff --git a/.circleci/config.yml b/.circleci/config.yml index acb23d4e1f..d5a065c41d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ version: 2.1 parameters: run_flaky_tests: type: boolean - default: true + default: false orbs: browser-tools: circleci/browser-tools@1.4.4 win: circleci/windows@5.0 @@ -355,7 +355,7 @@ jobs: type: string jobsize: type: string - parallelism: 1 + parallelism: 10 steps: - checkout - attach_workspace: diff --git a/apps/remix-ide-e2e/src/tests/terminal.test.ts b/apps/remix-ide-e2e/src/tests/terminal.test.ts index ca58c5bb77..33cead796d 100644 --- a/apps/remix-ide-e2e/src/tests/terminal.test.ts +++ b/apps/remix-ide-e2e/src/tests/terminal.test.ts @@ -4,7 +4,7 @@ import init from '../helpers/init' const branch = process.env.CIRCLE_BRANCH; const isMasterBranch = branch === 'master'; -const runMasterTests: boolean = true// (branch ? (isMasterBranch ? true : false) : true) +const runMasterTests: boolean = (branch ? (isMasterBranch ? true : false) : true) module.exports = { '@disabled': true,