ci_script.bat 440 B

123456789101112131415161718192021
  1. python -c "from jupyterlab.commands import build_check; build_check()"
  2. IF "%GROUP%"=="python" (
  3. jupyter lab build --debug
  4. REM Run the python tests
  5. py.test
  6. )
  7. IF "%GROUP%"=="integrity" (
  8. REM Run the integrity script first
  9. jlpm run integrity --force
  10. REM Check yarn.lock file
  11. jlpm check --integrity
  12. REM Run a browser check in dev mode
  13. jlpm run build
  14. python -m jupyterlab.browser_check --dev-mode
  15. )