You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the interpreter constraint validation in the validate_constraints method of interpreter_constraints.py only checks to see if constraints are properly formed.
Add logic to validate_constraints to ensure that they are not mutually exclusive so we can fail early and not waste the user's time.
The text was updated successfully, but these errors were encountered:
When `--interpreter-constraint`s are specified that are unsatisfiable,
Pex now either errors if all given interpreter constraints are
unsatisfiable or else warns and continues with only the remaining valid
interpreter constraints after culling the unsatisfiable ones.
Fixespex-tool#432
When `--interpreter-constraint`s are specified that are unsatisfiable,
Pex now either errors if all given interpreter constraints are
unsatisfiable or else warns and continues with only the remaining valid
interpreter constraints after culling the unsatisfiable ones.
Fixes#432
---------
Co-authored-by: Benjy Weinberger <[email protected]>
Currently, the interpreter constraint validation in the
validate_constraints
method of interpreter_constraints.py only checks to see if constraints are properly formed.Add logic to
validate_constraints
to ensure that they are not mutually exclusive so we can fail early and not waste the user's time.The text was updated successfully, but these errors were encountered: