We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbc6ca1 commit e52f020Copy full SHA for e52f020
tasks/noci_test.sh
@@ -0,0 +1,16 @@
1
+#! /bin/bash
2
+
3
+EXIT_STATE=0
4
5
+# tests that aren't run on CI
6
7
+# jasmine specs with @noCI tag
8
+npm run citest-jasmine -- tests/*_test.js --tags noCI || EXIT_STATE=$?
9
10
+# mapbox image tests take too much resources on CI
11
+npm run test-image -- mapbox_* || EXIT_STATE=$?
12
13
+# run gl2d image test again (some mocks are skipped on CI)
14
+npm run test-image-gl2d || EXIT_STATE=$?
15
16
+exit $EXIT_STATE
0 commit comments