Remove JUPYTER_ENABLE_LAB variable warning

This commit is contained in:
Ayaz Salikhov
2022-04-01 00:23:17 +01:00
parent 9d68c7d1d4
commit c1a892c6dc
2 changed files with 0 additions and 10 deletions

View File

@@ -15,12 +15,6 @@ LOGGER = logging.getLogger(__name__)
@pytest.mark.parametrize(
"env,expected_command,expected_start,expected_warnings",
[
(
["JUPYTER_ENABLE_LAB=yes"],
"jupyter lab",
True,
["WARNING: JUPYTER_ENABLE_LAB is ignored"],
),
(None, "jupyter lab", True, []),
(["DOCKER_STACKS_JUPYTER_CMD=lab"], "jupyter lab", True, []),
(["RESTARTABLE=yes"], "run-one-constantly jupyter lab", True, []),