Skip to content
This repository has been archived by the owner on Dec 10, 2020. It is now read-only.

Commit

Permalink
Disable jvm-platform-analysis by default
Browse files Browse the repository at this point in the history
Disable by default until it is a bit snappier.

Filed pantsbuild#1972

Testing Done:
pantsbuild#1971

Reviewed at https://rbcommons.com/s/twitter/r/2618/
  • Loading branch information
stuhood committed Aug 13, 2015
1 parent 5fda92c commit db2263e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/python/pants/backend/jvm/tasks/jvm_platform_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ def product_types(cls):
@classmethod
def register_options(cls, register):
super(JvmPlatformValidate, cls).register_options(register)
register('--check', default='fatal', choices=['off', 'warn', 'fatal'],
# TODO: disabled by default: see https://github.com/pantsbuild/pants/issues/1972
register('--check', default='off', choices=['off', 'warn', 'fatal'],
help='Check to make sure no jvm targets target an earlier jdk than their dependencies')
register('--children-before-parents', default=False, action='store_true',
help='Organize output in the form target -> dependencies, rather than '
Expand Down

0 comments on commit db2263e

Please sign in to comment.