Merge pull request #1902 from opencloud-eu/disableRunningTestWithWatchFS
[full-ci] disable running ci with watch fs when full-ci
This commit is contained in:
+3
-3
@@ -608,7 +608,7 @@ def testPipelines(ctx):
|
|||||||
pipelines += apiTests(ctx)
|
pipelines += apiTests(ctx)
|
||||||
|
|
||||||
enable_watch_fs = [False]
|
enable_watch_fs = [False]
|
||||||
if ctx.build.event == "cron" or "full-ci" in ctx.build.title.lower():
|
if ctx.build.event == "cron":
|
||||||
enable_watch_fs.append(True)
|
enable_watch_fs.append(True)
|
||||||
|
|
||||||
for run_with_watch_fs_enabled in enable_watch_fs:
|
for run_with_watch_fs_enabled in enable_watch_fs:
|
||||||
@@ -994,7 +994,7 @@ def localApiTestPipeline(ctx):
|
|||||||
|
|
||||||
with_remote_php = [True]
|
with_remote_php = [True]
|
||||||
enable_watch_fs = [False]
|
enable_watch_fs = [False]
|
||||||
if ctx.build.event == "cron" or "full-ci" in ctx.build.title.lower():
|
if ctx.build.event == "cron":
|
||||||
with_remote_php.append(False)
|
with_remote_php.append(False)
|
||||||
enable_watch_fs.append(True)
|
enable_watch_fs.append(True)
|
||||||
|
|
||||||
@@ -1310,7 +1310,7 @@ def apiTests(ctx):
|
|||||||
|
|
||||||
with_remote_php = [True]
|
with_remote_php = [True]
|
||||||
enable_watch_fs = [False]
|
enable_watch_fs = [False]
|
||||||
if ctx.build.event == "cron" or "full-ci" in ctx.build.title.lower():
|
if ctx.build.event == "cron":
|
||||||
with_remote_php.append(False)
|
with_remote_php.append(False)
|
||||||
enable_watch_fs.append(True)
|
enable_watch_fs.append(True)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user