Execute cliargs script before running tests

This commit is contained in:
Erik C. Thauvin 2024-05-28 14:27:54 -07:00
parent ec50e5272b
commit e6230a3644
Signed by: erik
GPG key ID: 776702A6A2DA330E
6 changed files with 23 additions and 13 deletions

View file

@ -108,4 +108,13 @@ public class PitestOperationBuild extends Project {
.ruleSets("config/pmd.xml")
.execute();
}
@Override
public void test() throws Exception {
new ExecOperation()
.fromProject(this)
.command("scripts/cliargs.sh")
.execute();
super.test();
}
}