Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit a5a98d3

Browse files
committed
chore(travis): put unit module tests into separate job
They take a lot of time since we created different karma jobs for them
1 parent 15d4dd3 commit a5a98d3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ env:
1515
- JOB=ci-checks
1616
- JOB=unit-core BROWSER_PROVIDER=saucelabs
1717
- JOB=unit-jquery BROWSER_PROVIDER=saucelabs
18+
- JOB=unit-modules BROWSER_PROVIDER=saucelabs
1819
- JOB=docs-app BROWSER_PROVIDER=saucelabs
1920
- JOB=e2e TEST_TARGET=jqlite BROWSER_PROVIDER=saucelabs
2021
- JOB=e2e TEST_TARGET=jquery BROWSER_PROVIDER=saucelabs

scripts/travis/build.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@ case "$JOB" in
3535
"unit-core")
3636
grunt test:promises-aplus
3737
grunt test:jqlite --browsers="$BROWSERS" --reporters=spec
38-
grunt test:modules --browsers="$BROWSERS" --reporters=spec
3938
;;
4039
"unit-jquery")
4140
grunt test:jquery --browsers="$BROWSERS" --reporters=spec
4241
grunt test:jquery-2.2 --browsers="$BROWSERS" --reporters=spec
4342
grunt test:jquery-2.1 --browsers="$BROWSERS" --reporters=spec
4443
;;
44+
"unit-modules")
45+
grunt test:modules --browsers="$BROWSERS" --reporters=spec
46+
;;
4547
"docs-app")
4648
grunt tests:docs --browsers="$BROWSERS" --reporters=spec
4749
grunt test:travis-protractor --specs="docs/app/e2e/**/*.scenario.js"
@@ -102,6 +104,7 @@ case "$JOB" in
102104
'ci-checks',\
103105
'unit-core',\
104106
'unit-jquery',\
107+
'unit-modules',\
105108
'docs-app',\
106109
'e2e',\
107110
or\

0 commit comments

Comments
 (0)