File tree 2 files changed +12
-8
lines changed
2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change
1
+ # runNondex
2
+
1
3
2
4
What repo we want to run Nondex on?
3
5
@@ -6,13 +8,6 @@ What repo we want to run Nondex on?
6
8
7
9
8
10
9
-
10
- # runNondexAll
11
-
12
- This is simplified script for quick start
13
- Go to folder of .pom.xml files, and check all the result in result.log
14
-
15
-
16
11
# Dependencies
17
12
18
13
It is recommended to use a virtual python environment for the required modules:
@@ -27,8 +22,12 @@ Make sure to first install packages in `requirements.txt`.
27
22
cd auto-run-nondex
28
23
pip install -r requirements.txt
29
24
```
25
+ # runNondexAll
26
+
27
+ This is simplified script for quick start
28
+ Go to folder of .pom.xml files, and check all the result in result.log
30
29
31
- # runNondex in each module:
30
+ # runNondex module:
32
31
``` bash
33
32
./runNondex.sh < project_folder_path> < optional-directory-name>
34
33
```
Original file line number Diff line number Diff line change
1
+ # Assume this script is run from the folder of .pom.xml files
2
+
3
+ mvn edu.illinois:nondex-maven-plugin:2.1.1-SNAPSHOT:nondex -Dlicense.skip=true -Drat.skip=true -fae | tee ./result.log
4
+
5
+ awk ' /\[INFO\] Across all seeds:/{flag=1; next} /\[INFO\] Test results can be found at:/{flag=0} flag' " ./result.log"
You can’t perform that action at this time.
0 commit comments