Skip to content

Commit eac443b

Browse files
author
Kelly Selden
committed
split tests for more concurrency
1 parent aa6a944 commit eac443b

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ jobs:
3232
- 8
3333
- 13
3434
test-command:
35+
- test:command
36+
- test:bin
3537
- test:fast
36-
- test:slow
3738
exclude:
3839
- os: macos-latest
3940
node: 13

appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ install:
3232
test_script:
3333
- node --version
3434
- npm --version
35-
- npm run test:slow
35+
- npm run test:command
36+
- npm run test:bin
3637

3738
# http://help.appveyor.com/discussions/questions/1310-delete-cache
3839
cache:

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
"scripts": {
1111
"start": "bin/ember-cli-update.js",
1212
"test": "cross-env DEBUG=ember-cli-update,boilerplate-update,git-diff-apply,git-fixtures,ember-cli-addon-tests mocha \"test/!(fixtures)/**/*-test.js\"",
13+
"test:command": "cross-env DEBUG=ember-cli-update,boilerplate-update,git-diff-apply,git-fixtures,ember-cli-addon-tests mocha test/acceptance/ember-addon-test.js --retries 1",
14+
"test:bin": "cross-env DEBUG=ember-cli-update,boilerplate-update,git-diff-apply,git-fixtures,ember-cli-addon-tests mocha test/acceptance/ember-cli-update-test.js --retries 1",
1315
"test:fast": "cross-env DEBUG=ember-cli-update,boilerplate-update,git-diff-apply,git-fixtures mocha \"test/+(integration|unit)/**/*-test.js\" --retries 1",
14-
"test:slow": "cross-env DEBUG=ember-cli-update,boilerplate-update,git-diff-apply,git-fixtures,ember-cli-addon-tests mocha test/acceptance/**/*-test.js --retries 1",
1516
"lint": "eslint . --ext js,json"
1617
},
1718
"repository": {

0 commit comments

Comments
 (0)