-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[full-ci][tests-only]Run ocis tests without testing-app #4560
Conversation
6a3b6c9
to
d78008f
Compare
1665225
to
03c481a
Compare
a876b69
to
3ee5c33
Compare
3ee5c33
to
61d6c5b
Compare
@@ -671,7 +671,6 @@ def localApiTests(ctx, storage, suite, accounts_hash_difficulty = 4): | |||
restoreBuildArtifactCache(ctx, "ocis-binary-amd64", "ocis/bin") + | |||
ocisServer(storage, accounts_hash_difficulty) + | |||
restoreBuildArtifactCache(ctx, "testrunner", dirs["core"]) + | |||
restoreBuildArtifactCache(ctx, "testing_app", dirs["testing_app"]) + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove SKELETON_DIR
at line 684?
@@ -761,7 +760,6 @@ def coreApiTests(ctx, part_number = 1, number_of_parts = 1, storage = "ocis", ac | |||
restoreBuildArtifactCache(ctx, "ocis-binary-amd64", "ocis/bin") + | |||
ocisServer(storage, accounts_hash_difficulty) + | |||
restoreBuildArtifactCache(ctx, "testrunner", dirs["core"]) + | |||
restoreBuildArtifactCache(ctx, "testing_app", dirs["testing_app"]) + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove SKELETON_DIR
at line 773?
@@ -879,7 +877,6 @@ def uiTestPipeline(ctx, filterTags, early_fail, runPart = 1, numberOfParts = 1, | |||
ocisServer(storage, accounts_hash_difficulty) + | |||
waitForSeleniumService() + | |||
waitForMiddlewareService() + | |||
restoreBuildArtifactCache(ctx, "testing_app", dirs["testing_app"]) + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove TESTING_DATA_DIR
at line 889?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, cloneCoreRepos()
has git clone
of https://github.com/owncloud/testing.git
Can that be removed?
NOTE: We need |
5595539
to
8454781
Compare
I've not removed the cloning of the testing app as it is need for parallel deployment |
8454781
to
447d8c5
Compare
447d8c5
to
08826a6
Compare
08826a6
to
a9c2203
Compare
Kudos, SonarCloud Quality Gate passed! |
Author: Amrita <[email protected]> Date: Tue Sep 27 16:45:43 2022 +0545 [full-ci][tests-only]Run ocis tests without testing-app (#4560) * Run ocis tests without testing-app * add failing tests in expected to fail Co-authored-by: Swikriti Tripathi <[email protected]>
Description
This PR removes the cloning of the testing app , as it's not really needed here