Skip to content

Commit

Permalink
[full-ci] ci: bump ocis version to 7 (#11955)
Browse files Browse the repository at this point in the history
* ci: run tests against ocis 6.6

* test: fix space creation request

* test: latest rolling tag

* ci: bump ocis verion to 7.0
  • Loading branch information
saw-jan authored Dec 19, 2024
1 parent 1f7af5a commit 178dfa5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ config = {
"skip": False,
},
"ocis": {
"version": "5.0.0",
"version": "7.0",
# comma separated list of tags to be used for filtering. E.g. "@tag1,@tag2"
"tags": "~@skipOnOCIS",
"skip": False,
Expand Down
2 changes: 1 addition & 1 deletion test/gui/shared/scripts/helpers/SpaceHelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def get_share_endpint():


def create_space(space_name):
body = json.dumps({"Name": space_name})
body = json.dumps({"name": space_name})
response = request.post(get_space_endpint(), body)
if response.status_code != 201:
raise Exception(
Expand Down

0 comments on commit 178dfa5

Please sign in to comment.