Skip to content

Commit

Permalink
Don't sort checks by impact
Browse files Browse the repository at this point in the history
which caused CI test to fail
  • Loading branch information
webthethird committed Dec 23, 2022
1 parent 1965d26 commit cd8c638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slither/tools/upgradeability/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def choose_checks(
if args.exclude_high:
detectors_to_run = [d for d in detectors_to_run if d.IMPACT != CheckClassification.HIGH]

detectors_to_run = sorted(detectors_to_run, key=lambda x: x.IMPACT)
# detectors_to_run = sorted(detectors_to_run, key=lambda x: x.IMPACT)
return detectors_to_run


Expand Down

0 comments on commit cd8c638

Please sign in to comment.