From 7bc6275bce1030f6353a70e651e0004146579814 Mon Sep 17 00:00:00 2001 From: Simon Li Date: Mon, 11 Dec 2023 00:17:28 +0000 Subject: [PATCH] local-binder-local-hub: include GitLab provider for UI testing --- testing/local-binder-mocked-hub/binderhub_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/local-binder-mocked-hub/binderhub_config.py b/testing/local-binder-mocked-hub/binderhub_config.py index 142b36c34..bab664c3f 100644 --- a/testing/local-binder-mocked-hub/binderhub_config.py +++ b/testing/local-binder-mocked-hub/binderhub_config.py @@ -8,13 +8,13 @@ from binderhub.build import FakeBuild from binderhub.registry import FakeRegistry -from binderhub.repoproviders import FakeProvider +from binderhub.repoproviders import FakeProvider, GitLabRepoProvider c.BinderHub.debug = True c.BinderHub.use_registry = True c.BinderHub.registry_class = FakeRegistry c.BinderHub.builder_required = False -c.BinderHub.repo_providers = {"gh": FakeProvider} +c.BinderHub.repo_providers = {"gh": FakeProvider, "gl": GitLabRepoProvider} c.BinderHub.build_class = FakeBuild # Uncomment the following line to enable BinderHub's API only mode