Skip to content

Commit 6f6fe4f

Browse files
committed
adding java tests for legacy firefox and marionette.... let's see what breaks shall we! (added to allowed failures)
1 parent 1969d75 commit 6f6fe4f

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.travis.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ env:
1919
- TASK=atoms_tests TARGET=chrome
2020
- TASK=java TARGET=java_small_tests
2121
- TASK=java TARGET=chrome
22+
- TASK=java TARGET=firefox
23+
- TASK=java TARGET=ff-legacy
2224
- TASK=java TARGET=grid TOXENV=chrome
2325
- TASK=api_docs TARGET=java
2426
- TASK=api_docs TARGET=py_
@@ -46,6 +48,8 @@ matrix:
4648
- env: TASK=py TOXENV=py27-marionette
4749
- env: TASK=py TOXENV=py27-remote
4850
- env: TASK=api_docs TARGET="//rb:"
51+
- env: TASK=java TARGET=firefox
52+
- env: TASK=java TARGET=ff-legacy
4953
before_script:
5054
- sh -e /etc/init.d/xvfb start
5155
script:
@@ -113,7 +117,14 @@ script:
113117
fi
114118
- |
115119
if [[ $TASK == "java" ]]; then
116-
./go test_$TARGET
120+
case $TARGET in
121+
ff-legacy)
122+
./go test_firefox
123+
firefox)
124+
./go //java/client/test/org/openqa/selenium/firefox:marionette:run
125+
*)
126+
./go test_$TARGET
127+
esac
117128
fi
118129
- |
119130
if [[ $TASK == "py" ]]; then

0 commit comments

Comments
 (0)