File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -213,7 +213,12 @@ def test_project_remote_mirrors(project):
213
213
214
214
215
215
def test_project_services (project ):
216
+ # Use 'update' to create a service as we don't have a 'create' method and
217
+ # to add one is somewhat complicated so it hasn't been done yet.
218
+ project .services .update ("asana" , api_key = "foo" )
219
+
216
220
service = project .services .get ("asana" )
221
+ assert service .active is True
217
222
service .api_key = "whatever"
218
223
service .save ()
219
224
Original file line number Diff line number Diff line change 1
1
GITLAB_IMAGE = gitlab/gitlab-ce
2
- GITLAB_TAG = 13.11.4 -ce.0
2
+ GITLAB_TAG = 13.12.0 -ce.0
Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ services:
11
11
hostname : ' gitlab.test'
12
12
privileged : true # Just in case https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/1350
13
13
environment :
14
+ GITLAB_ROOT_PASSWORD : 5iveL!fe
15
+ GITLAB_SHARED_RUNNERS_REGISTRATION_TOKEN : registration-token
14
16
GITLAB_OMNIBUS_CONFIG : |
15
17
external_url 'http://gitlab.test'
16
- gitlab_rails['initial_root_password'] = '5iveL!fe'
17
- gitlab_rails['initial_shared_runners_registration_token'] = 'registration-token'
18
18
registry['enable'] = false
19
19
nginx['redirect_http_to_https'] = false
20
20
nginx['listen_port'] = 80
You can’t perform that action at this time.
0 commit comments