mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Automatic style fix
This commit is contained in:
parent
9accebe73d
commit
3b4120ba55
@ -308,7 +308,8 @@ class PRInfo:
|
||||
return False
|
||||
|
||||
for f in self.changed_files:
|
||||
if (f.startswith("programs")
|
||||
if (
|
||||
f.startswith("programs")
|
||||
or f.startswith("src")
|
||||
or f.startswith("base")
|
||||
or f.startswith("cmake")
|
||||
@ -336,8 +337,8 @@ class PRInfo:
|
||||
|
||||
# Integration tests can be skipped if only functional/performance tests are changes
|
||||
for f in self.changed_files:
|
||||
if (not f.startswith("tests/queries")
|
||||
and not f.startswith("tests/performance")
|
||||
if not f.startswith("tests/queries") and not f.startswith(
|
||||
"tests/performance"
|
||||
):
|
||||
return False
|
||||
|
||||
@ -359,8 +360,8 @@ class PRInfo:
|
||||
|
||||
# Functional tests can be skipped if only integration/performance tests are changes
|
||||
for f in self.changed_files:
|
||||
if (not f.startswith("tests/integration")
|
||||
and not f.startswith("tests/performance")
|
||||
if not f.startswith("tests/integration") and not f.startswith(
|
||||
"tests/performance"
|
||||
):
|
||||
return False
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user