|
@@ -11,9 +11,9 @@ export PATH="$HOME/miniconda/bin:$PATH"
|
|
|
|
|
|
if [[ $GROUP == base ]]; then
|
|
|
|
|
|
+ # Test against a clean npm build
|
|
|
npm run clean
|
|
|
npm run build:all
|
|
|
-
|
|
|
npm test
|
|
|
|
|
|
# Run the python tests
|
|
@@ -21,6 +21,13 @@ if [[ $GROUP == base ]]; then
|
|
|
nosetests
|
|
|
popd
|
|
|
|
|
|
+fi
|
|
|
+
|
|
|
+
|
|
|
+if [[ $GROUP == misc ]]; then
|
|
|
+ # Run the coverage check.
|
|
|
+ npm run test:coverage
|
|
|
+
|
|
|
# Make sure we have CSS that can be converted with postcss
|
|
|
npm install -g postcss-cli
|
|
|
postcss jupyterlab/build/*.css > /dev/null
|
|
@@ -49,11 +56,6 @@ if [[ $GROUP == base ]]; then
|
|
|
fi
|
|
|
|
|
|
|
|
|
-if [[ $GROUP == coverage ]]; then
|
|
|
- npm run test:coverage
|
|
|
-fi
|
|
|
-
|
|
|
-
|
|
|
if [[ $GROUP == examples ]]; then
|
|
|
# Make sure the examples build
|
|
|
npm run build:examples
|