run-test.py 431 B

1234567891011121314
  1. # Copyright (c) Jupyter Development Team.
  2. # Distributed under the terms of the Modified BSD License.
  3. import os
  4. from jupyterlab.tests.test_app import run_jest, JestApp
  5. HERE = os.path.realpath(os.path.dirname(__file__))
  6. if __name__ == '__main__':
  7. # xeus-python requires the xpython_debug_logs folder
  8. jest_app = JestApp.instance()
  9. os.mkdir(os.path.join(jest_app.notebook_dir, 'xpython_debug_logs'))
  10. run_jest(HERE)