We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35a3052 commit e46539fCopy full SHA for e46539f
dev/run-tests.py
@@ -654,9 +654,9 @@ def main():
654
run_apache_rat_checks()
655
656
# style checks
657
- if not changed_files or any(f.endsWith(".scala") for f in changed_files):
+ if not changed_files or any(f.endswith(".scala") for f in changed_files):
658
run_scala_style_checks()
659
- if not changed_files or any(f.endsWith(".py") for f in changed_files):
+ if not changed_files or any(f.endswith(".py") for f in changed_files):
660
run_python_style_checks()
661
662
# determine if docs were changed and if we're inside the amplab environment
0 commit comments