Merge pull request #719 from consideRatio/pr/update-hub-user-env-and-tljh-deps

Bump to recent versions, and make bootstrap.py update to those when run
This commit is contained in:
Erik Sundell
2021-10-28 03:47:42 +02:00
committed by GitHub
8 changed files with 69 additions and 54 deletions

View File

@@ -98,13 +98,13 @@ def test_auth_dummy():
"""
c = apply_mock_config({
'auth': {
'type': 'dummyauthenticator.DummyAuthenticator',
'type': 'dummy',
'DummyAuthenticator': {
'password': 'test'
}
}
})
assert c.JupyterHub.authenticator_class == 'dummyauthenticator.DummyAuthenticator'
assert c.JupyterHub.authenticator_class == 'dummy'
assert c.DummyAuthenticator.password == 'test'