Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f9bfcd4

Browse files
authored
updated config.yml (saucelabs-training#25)
1 parent e85e948 commit f9bfcd4

File tree

1 file changed

+34
-2
lines changed

1 file changed

+34
-2
lines changed

.circleci/config.yml

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,42 @@ jobs:
3434
- ~/.m2
3535
key: demo-java-{{ checksum "pom.xml" }}
3636
- run:
37-
name: "Run Maven Tests"
37+
name: "Run On-Boarding JUnit Tests"
3838
command: |
3939
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/
4173
- run:
4274
name: "Shut Down Sauce Connect Tunnel"
4375
command: |

0 commit comments

Comments
 (0)