Skip to content

Commit

Permalink
Merge pull request #8464 from blink1073/fix-usage-tests
Browse files Browse the repository at this point in the history
Address CI Usage Test Timeout
  • Loading branch information
Steven Silvester committed May 26, 2020
2 parents 4f8b46d + eb5fcf9 commit 9fa2723
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/linuxtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
python: 3.5
- group: docs
python: 3.5
- group: usage
python: 3.5
fail-fast: false
timeout-minutes: 120
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion jupyterlab/browser_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ async def run_test_async(app, func):
self.log.error(str(e))
result = 1
finally:
sys.exit(result)
time.sleep(2)
os._exit(result)


async def run_async_process(cmd, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def run(self):
setup_args['install_requires'] = [
'notebook>=4.3.1',
'tornado!=6.0.0, !=6.0.1, !=6.0.2',
'jupyterlab_server>=1.1.4, <2.0',
'jupyterlab_server>=1.1.5, <2.0',
'jinja2>=2.10'
]

Expand Down

0 comments on commit 9fa2723

Please sign in to comment.