Skip to content

Commit 463e295

Browse files
committed
linting
1 parent 9ee4dc8 commit 463e295

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

atest/Keywords.robot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ Lab Log Should Not Contain Known Error Messages
7272
${test log} = Set Variable ${log[${PREVIOUS LAB LOG LENGTH}:]}
7373
${length} = Get Length ${log}
7474
Set Global Variable ${PREVIOUS LAB LOG LENGTH} ${length}
75-
Run Keyword If ("${OS}", "${PY}") !\= ("Windows", "36")
76-
... Should Not Contain Any ${test log} @{KNOWN BAD ERRORS}
75+
Run Keyword If ("${OS}", "${PY}") !\= ("Windows", "36")
76+
... Should Not Contain Any ${test log} @{KNOWN BAD ERRORS}
7777

7878
Wait For Splash
7979
Go To ${URL}lab?reset&token=${TOKEN}

scripts/atest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# everything else: https://github.com/krassowski/jupyterlab-lsp/pull/245
3030
["language:yaml", "feature:config"],
3131
# TODO: restore when we figure out win36 vs jedi on windows
32-
["language:python", "py:36", "os:windows"]
32+
["language:python", "py:36", "os:windows"],
3333
]
3434

3535

scripts/jedi_cache.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@
88
dependencies
99
1010
why is this needed:
11-
- Before we had this, a couple of browser tests appeared
12-
"consistently flakier" than they were, as they were
11+
- Before we had this, a couple of browser tests appeared
12+
"consistently flakier" than they were, as they were
1313
time-bounded by creating the jedi cache.
14-
- This was taking up to a minute to get a single
14+
- This was taking up to a minute to get a single
1515
completion value back
16-
- Further, were this cache to get corrupted (perhaps due to
16+
- Further, were this cache to get corrupted (perhaps due to
1717
killing a running test :P) things go very mysteriously bad.
1818
- We need a way for the cache to be right before testing
1919
2020
how does it work:
2121
- When _using_ jedi for the first time, the cache gets
22-
created in `jedi.settings.cache_directory`, usually
23-
somewhere in $HOME.
24-
- As different libriraries are inspected by jedi, they get
25-
added to the cache.
26-
- This is very slow, especially on windows, and cannot
22+
created in `jedi.settings.cache_directory`, usually
23+
somewhere in $HOME.
24+
- As different libriraries are inspected by jedi, they get
25+
added to the cache.
26+
- This is very slow, especially on windows, and cannot
2727
feasibly be cached, today.
2828
- This script accelerates this process, so it can be done
2929
in a controlled manner rather than during some other test

0 commit comments

Comments
 (0)