Skip to content

Commit d450411

Browse files
authored
Merge pull request #6 from blink1073/fix-windows-cull
2 parents c9fc4d5 + dae7cfe commit d450411

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.. highlight:: sh
2+
3+
.. include:: ../../../CONTRIBUTING.rst

docs/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Welcome to Jupyter Server Terminals documentation!
1212

1313
changelog
1414
api
15+
contributors/contributing
1516

1617

1718
Indices and tables

jupyter_server_terminals/test/test_terminal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ async def test_culling(jp_server_config, jp_fetch, jp_cleanup_subprocesses):
159159
last_activity = term["last_activity"]
160160

161161
culled = False
162-
for i in range(CULL_TIMEOUT + CULL_INTERVAL):
162+
for i in range(CULL_TIMEOUT + CULL_INTERVAL * 2):
163163
try:
164164
resp = await jp_fetch(
165165
"api",

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ python_requires = >=3.6
3030
install_requires =
3131
jupyter_server>=1,<2
3232
terminado>=0.8.3
33+
pywinpty(<2);os_name=='nt'
3334

3435
[options.extras_require]
3536
test =

0 commit comments

Comments
 (0)