Forráskód Böngészése

fix handling of test build

Steven Silvester 5 éve
szülő
commit
0bc3e6cfaf
1 módosított fájl, 5 hozzáadás és 2 törlés
  1. 5 2
      scripts/ci_script.sh

+ 5 - 2
scripts/ci_script.sh

@@ -26,11 +26,14 @@ if [[ $GROUP == js* ]]; then
         here=$(pwd)
         if [[ -d "${here}/tests/test-${GROUP}" ]];then
             scope="@jupyterlab/test-${PKG}"
+            jlpm run build:test:scope --scope ${scope}
         else
+            pushd packages/${PKG}
+            jlpm run build:test
+            popd
             scope="@jupyterlab/${PKG}"
-            jlpm run build:testutils
         fi
-        jlpm run build:test:scope --scope ${scope}
+
         FORCE_COLOR=1 jlpm run test:scope --loglevel success --scope ${scope}
     else
         jlpm build:packages