3 files changed
@@ -81,13 +81,13 @@ def test_template_dockerfile(gl): | |||
| 81 | 81 | ||
| 82 | 82 | ||
| 83 | 83 | def test_template_gitignore(gl): | |
| 84 | - assert gl.gitignores.list() | ||
| 84 | + assert gl.gitignores.list(all=True) | ||
| 85 | 85 | gitignore = gl.gitignores.get("Node") | |
| 86 | 86 | assert gitignore.content is not None | |
| 87 | 87 | ||
| 88 | 88 | ||
| 89 | 89 | def test_template_gitlabciyml(gl): | |
| 90 | - assert gl.gitlabciymls.list() | ||
| 90 | + assert gl.gitlabciymls.list(all=True) | ||
| 91 | 91 | gitlabciyml = gl.gitlabciymls.get("Nodejs") | |
| 92 | 92 | assert gitlabciyml.content is not None | |
| 93 | 93 | ||
@@ -244,7 +244,7 @@ def test_project_protected_branches(project): | |||
| 244 | 244 | ||
| 245 | 245 | ||
| 246 | 246 | def test_project_remote_mirrors(project): | |
| 247 | - mirror_url = "http://gitlab.test/root/mirror.git" | ||
| 247 | + mirror_url = "https://gitlab.example.com/root/mirror.git" | ||
| 248 | 248 | ||
| 249 | 249 | mirror = project.remote_mirrors.create({"url": mirror_url}) | |
| 250 | 250 | assert mirror.url == mirror_url | |
@@ -14,7 +14,7 @@ services: | |||
| 14 | 14 | GITLAB_ROOT_PASSWORD: 5iveL!fe | |
| 15 | 15 | GITLAB_SHARED_RUNNERS_REGISTRATION_TOKEN: registration-token | |
| 16 | 16 | GITLAB_OMNIBUS_CONFIG: | | |
| 17 | - external_url 'http://gitlab.test' | ||
| 17 | + external_url 'http://127.0.0.1:8080' | ||
| 18 | 18 | registry['enable'] = false | |
| 19 | 19 | nginx['redirect_http_to_https'] = false | |
| 20 | 20 | nginx['listen_port'] = 80 | |
0 commit comments