瀏覽代碼

Add debugging

Steven Silvester 5 年之前
父節點
當前提交
30b34b0f19
共有 2 個文件被更改,包括 2 次插入1 次删除
  1. 1 1
      .github/workflows/windowstests.yml
  2. 1 0
      jupyterlab/browser_check.py

+ 1 - 1
.github/workflows/windowstests.yml

@@ -15,7 +15,7 @@ jobs:
       - name: Set up Python
         uses: actions/setup-python@v1
         with:
-          python-version: 3.6
+          python-version: 3.5
       - name: Set up Node
         uses: actions/setup-node@v1
         with:

+ 1 - 0
jupyterlab/browser_check.py

@@ -96,6 +96,7 @@ async def run_test_async(app, func):
     if inspect.iscoroutinefunction(func):
         test = func(url)
     else:
+        app.log.info('Using thread pool executor to run test')
         loop = asyncio.get_event_loop()
         executor = ThreadPoolExecutor()
         task = loop.run_in_executor(executor, func, url)