Drop support for ubuntu 20.04 and Python 3.8

This commit is contained in:
Erik Sundell
2024-09-20 21:43:55 +02:00
parent 92465ade36
commit 3f55ac2912
3 changed files with 12 additions and 15 deletions

View File

@@ -85,9 +85,9 @@ def test_ubuntu_too_old():
"""
Error with a useful message when running in older Ubuntu
"""
output = _run_bootstrap_in_container("ubuntu:18.04", False)
output = _run_bootstrap_in_container("ubuntu:20.04", False)
_stop_container()
assert output.stdout == "The Littlest JupyterHub requires Ubuntu 20.04 or higher\n"
assert output.stdout == "The Littlest JupyterHub requires Ubuntu 22.04 or higher\n"
assert output.returncode == 1