average-vr-56795
12/05/2017, 6:27 PMwitty-crayon-22786
12/05/2017, 6:30 PMfmt.*
is invoked, all of the tasks in the fmt
goal run... yes, non-intuitivewitty-crayon-22786
12/05/2017, 6:30 PM2: ...
good question, worth a bugwitty-crayon-22786
12/05/2017, 6:31 PM3: ...
depends on 2average-vr-56795
12/05/2017, 6:31 PMaverage-vr-56795
12/05/2017, 6:32 PMwitty-crayon-22786
12/05/2017, 6:32 PMaverage-vr-56795
12/05/2017, 6:32 PMaverage-vr-56795
12/05/2017, 6:32 PMwitty-crayon-22786
12/05/2017, 6:32 PMbusy-car-23170
12/05/2017, 7:05 PMsources
glob, pytest
is unable to find the file. What's the best way to go about having my conf file be visible to the tests?witty-crayon-22786
12/05/2017, 7:06 PMresources
target that captures the config.busy-car-23170
12/05/2017, 7:08 PMbusy-car-23170
12/05/2017, 9:23 PMscalastyle
task installed on the compile
goal, but now it's installed on the lint
goal by default. This is causing an exception: An option with this name was already registered on this scope. [option --jvm-options in scope compile.scalastyle]
. I can remove scalastyle
from compile
, but then it no longer runs on compile which is not desirable. How can I remove scalastyle
from the lint
goal so that the previous functionality is maintained?witty-crayon-22786
12/05/2017, 9:31 PMGoal.by_name('lint').uninstall_task('scalastyle')
busy-car-23170
12/05/2017, 9:32 PMbusy-car-23170
12/05/2017, 9:32 PMaloof-angle-91616
12/05/2017, 9:32 PMlint
goal cause that error message? sounds like it might be getting registered for compile
twice?aloof-angle-91616
12/05/2017, 9:32 PMwitty-crayon-22786
12/05/2017, 9:32 PMaloof-angle-91616
12/05/2017, 9:32 PMwitty-crayon-22786
12/05/2017, 9:33 PMaloof-angle-91616
12/05/2017, 9:33 PMwitty-crayon-22786
12/05/2017, 9:33 PMwitty-crayon-22786
12/05/2017, 9:33 PMaloof-angle-91616
12/05/2017, 9:33 PMbusy-car-23170
12/05/2017, 9:34 PMregister.py
code:
def register_goals():
Goal.by_name('lint').uninstall_task('scalastyle')
task(name='scalastyle', action=Scalastyle).install('compile', first=True)
busy-car-23170
12/05/2017, 9:34 PMwitty-crayon-22786
12/05/2017, 9:38 PMwitty-crayon-22786
12/05/2017, 9:38 PM