Skip to content

Commit

Permalink
run only 10 and 11
Browse files Browse the repository at this point in the history
  • Loading branch information
SagarGi committed Apr 18, 2023
1 parent 2d764e6 commit 46b1dca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .drone.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# The test runner source for API tests
APITESTS_COMMITID=754cc767a5427525a8b5a6ce0c2e67aa240fe50d
APITESTS_COMMITID=aec511a4e6d3c19a7f1068e9516ffc35c902148b
APITESTS_BRANCH=master
APITESTS_REPO_GIT_URL=https://github.com/owncloud/ocis.git
3 changes: 1 addition & 2 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ def cephService():
def main(ctx):
return [
checkStarlark(),
ocisIntegrationTest(),
] + s3ngIntegrationTests()

def ocisIntegrationTest():
Expand Down Expand Up @@ -135,7 +134,7 @@ def s3ngIntegrationTests():
parallelRuns = 12
pipelines = []
for runPart in range(1, parallelRuns + 1):
if runPart in [9]:
if runPart in [1, 2, 3, 4, 5, 6, 7, 8, 9, 12]:
continue

pipelines.append(
Expand Down
2 changes: 1 addition & 1 deletion tests/ocis
Submodule ocis updated 79 files
+1 −2 .drone.env
+2 −2 .drone.star
+0 −6 CHANGELOG.md
+0 −5 changelog/unreleased/av-more-logging.md
+0 −5 changelog/unreleased/bump-go-ldap-version.md
+0 −5 changelog/unreleased/configure-grpc-in-ocs.md
+0 −5 changelog/unreleased/do-not-share-versions.md
+0 −13 changelog/unreleased/enhancement-ldap-group-create-basedn.md
+0 −5 changelog/unreleased/fix-user-type-config.md
+2 −11 deployments/examples/ocis_keycloak/config/keycloak/ocis-realm.dist.json
+1 −3 docs/services/new-service-checklist.md
+4 −4 go.mod
+10 −12 go.sum
+1 −1 ocis-pkg/config/config.go
+1 −1 ocis-pkg/shared/shared_types.go
+1 −1 ocis-pkg/version/version.go
+2 −2 services/antivirus/pkg/config/config.go
+0 −3 services/antivirus/pkg/service/service.go
+2 −2 services/audit/pkg/config/config.go
+26 −26 services/auth-basic/pkg/config/config.go
+1 −3 services/eventhistory/README.md
+3 −3 services/eventhistory/pkg/config/config.go
+2 −2 services/frontend/pkg/config/config.go
+0 −14 services/gateway/README.md
+2 −2 services/gateway/pkg/config/config.go
+1 −18 services/graph/README.md
+33 −34 services/graph/pkg/config/config.go
+0 −4 services/graph/pkg/config/defaults/defaultconfig.go
+2 −28 services/graph/pkg/config/parser/parse.go
+0 −2 services/graph/pkg/identity/ldap.go
+3 −58 services/graph/pkg/identity/ldap_group.go
+28 −100 services/graph/pkg/identity/ldap_group_test.go
+1 −1 services/graph/pkg/service/v0/drives.go
+0 −2 services/graph/pkg/service/v0/errorcode/errorcode.go
+2 −7 services/graph/pkg/service/v0/groups.go
+23 −23 services/groups/pkg/config/config.go
+1 −1 services/idm/pkg/config/config.go
+12 −12 services/idp/pkg/config/config.go
+3 −3 services/notifications/pkg/config/config.go
+0 −19 services/ocs/README.md
+0 −6 services/ocs/pkg/command/server.go
+0 −2 services/ocs/pkg/config/config.go
+0 −5 services/ocs/pkg/config/defaults/defaultconfig.go
+3 −4 services/policies/pkg/config/config.go
+3 −3 services/postprocessing/pkg/config/config.go
+0 −16 services/proxy/README.md
+1 −1 services/search/pkg/config/reva.go
+3 −3 services/search/pkg/config/search.go
+3 −3 services/sharing/pkg/config/config.go
+4 −4 services/storage-users/pkg/config/config.go
+1 −2 services/thumbnails/pkg/config/config.go
+1 −3 services/userlog/README.md
+4 −4 services/userlog/pkg/config/config.go
+27 −27 services/users/pkg/config/config.go
+0 −1 services/users/pkg/config/defaults/defaultconfig.go
+1 −1 services/web/Makefile
+3 −3 services/webdav/pkg/config/config.go
+1 −1 sonar-project.properties
+4 −0 tests/acceptance/expected-failures-API-on-OCIS-storage.md
+55 −52 tests/acceptance/expected-failures-localAPI-on-OCIS-storage.md
+2 −2 tests/acceptance/features/apiContract/sharesReport.feature
+2 −2 tests/acceptance/features/apiContract/spacesReport.feature
+2 −42 tests/acceptance/features/apiGraph/addUserToGroup.feature
+44 −280 tests/acceptance/features/apiGraph/editUser.feature
+15 −267 tests/acceptance/features/apiGraph/getGroup.feature
+79 −820 tests/acceptance/features/apiGraph/getUser.feature
+6 −79 tests/acceptance/features/apiGraph/getUserOwnInformation.feature
+1 −21 tests/acceptance/features/apiGraph/removeUserFromGroup.feature
+6 −35 tests/acceptance/features/apiSpaces/changeSpaces.feature
+3 −9 tests/acceptance/features/apiSpaces/download.feature
+47 −0 tests/acceptance/features/apiSpaces/restoreSpaceObjects.feature
+2 −65 tests/acceptance/features/apiSpaces/setQuota.feature
+112 −0 tests/acceptance/features/apiSpaces/spaceManagement.feature
+4 −0 tests/acceptance/features/apiSpaces/uploadSpaces.feature
+1 −3 tests/acceptance/features/apiSpacesShares/changingFilesShare.feature
+0 −8 tests/acceptance/features/bootstrap/FeatureContext.php
+227 −45 tests/acceptance/features/bootstrap/GraphContext.php
+122 −16 tests/acceptance/features/bootstrap/SpacesContext.php
+101 −26 tests/acceptance/features/coreApiVersions/fileVersions.feature

0 comments on commit 46b1dca

Please sign in to comment.