Skip to content
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

adjusting where inconsistency is set. if we are inconsistent, but the… #7152

Merged
merged 6 commits into from
Sep 10, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion scripts/analyze_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ def render_report(output_path, report_context):
print('\n\nIncompatible dependency versions detected in libraries, run this script with --verbose for details')
else:
print('\n')
exitcode = 1
else:
print('\n\nAll library dependencies verified, no incompatible versions detected')

Expand Down Expand Up @@ -257,6 +256,8 @@ def render_report(output_path, report_context):
frozen[req_name] = [spec]
except:
print('Unable to open shared_requirements.txt, shared requirements have not been validated')
if inconsistent:
scbedd marked this conversation as resolved.
Show resolved Hide resolved
exitcode = 1

missing_reqs, new_reqs, changed_reqs = {}, {}, {}
non_overridden_reqs_count = 0
Expand Down