We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9574c8 commit 10e515aCopy full SHA for 10e515a
tests/integration/local/gitbucket/init.py
@@ -11,6 +11,20 @@
11
s.get(base_url + '/signin?redirect=%2F')
12
s.post(base_url + '/signin', data={"userName": "root", "password": "root"})
13
14
+# start ssh server
15
+system_data = {
16
+ "baseUrl": "http://localhost:8080",
17
+ "information": "",
18
+ "allowAccountRegistration": "false",
19
+ "isCreateRepoOptionPublic": "true",
20
+ "allowAnonymousAccess": "true",
21
+ "activityLogLimit": "",
22
+ "ssh": "on",
23
+ "sshHost": "localhost",
24
+ "sshPort": "29418",
25
+}
26
+s.post(base_url + '/admin/system', data=system_data)
27
+
28
# create test user
29
user_data = {
30
"userName": "user",
0 commit comments