Skip to content

Commit

Permalink
Remove unnecessary messages in CI (apache#7951)
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk authored Mar 28, 2020
1 parent dd96d20 commit 7939758
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/ci/in_container/_in_container_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function in_container_cleanup_pyc() {
-path "./.eggs" -prune -o \
-path "./docs/_build" -prune -o \
-path "./build" -prune -o \
-name "*.pyc" | grep ".pyc$" | sudo xargs rm -vf
-name "*.pyc" | grep ".pyc$" | sudo xargs rm -f
set -o pipefail
}

Expand Down
4 changes: 3 additions & 1 deletion tests/build_provider_packages_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,11 @@ def insert_documentation(deps_dict: Dict[str, List[str]], res: List[str]):
if __name__ == '__main__':
print()
files, provider_dependencies_file_name, documentation_file_name = parse_arguments()
num_files = 0
for file in files:
print(f"Verifying file {file}")
check_if_different_provider_used(file)
num_files += 1
print(f"Verified {num_files} files.")
if infos:
print("\nInformation messages:\n")
for info in infos:
Expand Down

0 comments on commit 7939758

Please sign in to comment.