Skip to content

Commit 2e01d56

Browse files
committed
cherry-pick some changes from previous work
1 parent 3d42fb3 commit 2e01d56

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

scripts/atest.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
# notebook and ipykernel releases do not yet support python 3.8 on windows
2323
# ("Windows", "38"): ["--include", "not-supported", "--runemptysuite"]
2424
# TODO: restore when we figure out win36 vs jedi on windows
25-
("Windows", "36"): ["--exclude", "feature:completion", "--runemptysuite"]
25+
# ("Windows", "36"): ["--exclude", "feature:completion", "--runemptysuite"]
2626
}
2727

2828
NON_CRITICAL = [
2929
# TODO: restore when yaml-language-server supports both config and...
3030
# everything else: https://github.com/jupyter-lsp/jupyterlab-lsp/pull/245
3131
["language:yaml", "feature:config"],
3232
# TODO: restore when we figure out win36 vs jedi on windows
33-
["language:python", "py:36", "os:windows"],
33+
# ["language:python", "py:36", "os:windows"],
3434
]
3535

3636

@@ -100,6 +100,10 @@ def atest(attempt, extra_args):
100100
f"OS:{OS}",
101101
"--variable",
102102
f"PY:{PY}",
103+
# don't ever test our examples
104+
"--exclude",
105+
"atest:example",
106+
# random ensures there's not inter-test coupling
103107
"--randomize",
104108
"all",
105109
*(extra_args or []),

0 commit comments

Comments
 (0)