Execute cligargs script prior to to running tests
This commit is contained in:
parent
f363e7dcce
commit
b42190d9cf
4 changed files with 10 additions and 0 deletions
|
@ -98,6 +98,15 @@ public class CompileKotlinOperationBuild extends Project {
|
|||
new CompileKotlinOperationBuild().start(args);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void test() throws Exception {
|
||||
new ExecOperation()
|
||||
.fromProject(this)
|
||||
.command("scripts/cliargs.sh")
|
||||
.execute();
|
||||
super.test();
|
||||
}
|
||||
|
||||
@BuildCommand(summary = "Runs PMD analysis")
|
||||
public void pmd() {
|
||||
new PmdOperation()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue