-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add new config options to README - some refactoring
- Loading branch information
Thomas Sievert
committed
Jun 25, 2024
1 parent
28d3388
commit 1cfa975
Showing
7 changed files
with
55 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,7 @@ exceptions: | |
style: | ||
MagicNumber: | ||
active: false | ||
|
||
complexity: | ||
TooManyFunctions: | ||
ignorePrivate: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/test/resources/test-project-task-config/src/squit/project/post_run.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import java.time.Instant | ||
Thread.sleep(1) | ||
Thread.sleep(10) | ||
def file = new File(config.getString("rootDir") + "/build/post_run.txt") | ||
file.text = Instant.now().toEpochMilli().toString() | ||
Thread.sleep(1) | ||
Thread.sleep(10) |
4 changes: 2 additions & 2 deletions
4
src/test/resources/test-project-task-config/src/squit/project/pre_run.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import java.time.Instant | ||
Thread.sleep(1) | ||
Thread.sleep(10) | ||
def file = new File(config.getString("rootDir") + "/build/pre_run.txt") | ||
file.text = Instant.now().toEpochMilli().toString() | ||
Thread.sleep(1) | ||
Thread.sleep(10) |