File tree Expand file tree Collapse file tree 1 file changed +34
-2
lines changed Expand file tree Collapse file tree 1 file changed +34
-2
lines changed Original file line number Diff line number Diff line change @@ -34,10 +34,42 @@ jobs:
34
34
- ~/.m2
35
35
key : demo-java-{{ checksum "pom.xml" }}
36
36
- run :
37
- name : " Run Maven Tests"
37
+ name : " Run On-Boarding JUnit Tests"
38
38
command : |
39
39
while ! lsof -i:4445 -t; do sleep 3; done
40
- mvn clean test
40
+ mvn test -pl on-boarding-modules/junit/
41
+ - run :
42
+ name : " Run On-Boarding TestNG Tests"
43
+ command : |
44
+ mvn test -pl on-boarding-modules/testng/
45
+ - run :
46
+ name : " Run On-Boarding JUnit Tests"
47
+ command : |
48
+ mvn test -pl on-boarding-modules/junit/
49
+ - run :
50
+ name : " Run Cross Browser/Platform Tests"
51
+ command : |
52
+ mvn test -pl parallel-testing/cross-browser-and-platform-config/
53
+ - run :
54
+ name : " Run Single Browser Config Tests"
55
+ command : |
56
+ mvn test -pl parallel-testing/single-browser-config/
57
+ - run :
58
+ name : " Run Headless Tests"
59
+ command : |
60
+ mvn test -pl headless/
61
+ # - run:
62
+ # name: "Run Appium Tests"
63
+ # command: |
64
+ # mvn test -pl appium-example/
65
+ - run :
66
+ name : " Run W3C JUnit Tests"
67
+ command : |
68
+ mvn test -pl w3c-examples/w3c-junit5/
69
+ - run :
70
+ name : " Run W3C TestNG Tests"
71
+ command : |
72
+ mvn test -pl w3c-examples/w3c-testng/
41
73
- run :
42
74
name : " Shut Down Sauce Connect Tunnel"
43
75
command : |
You can’t perform that action at this time.
0 commit comments