Skip to content

Commit

Permalink
adding java tests for legacy firefox and marionette.... let's see wha…
Browse files Browse the repository at this point in the history
…t breaks shall we! (added to allowed failures)
  • Loading branch information
lukeis committed Oct 18, 2016
1 parent 1969d75 commit 6f6fe4f
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ env:
- TASK=atoms_tests TARGET=chrome
- TASK=java TARGET=java_small_tests
- TASK=java TARGET=chrome
- TASK=java TARGET=firefox
- TASK=java TARGET=ff-legacy
- TASK=java TARGET=grid TOXENV=chrome
- TASK=api_docs TARGET=java
- TASK=api_docs TARGET=py_
Expand Down Expand Up @@ -46,6 +48,8 @@ matrix:
- env: TASK=py TOXENV=py27-marionette
- env: TASK=py TOXENV=py27-remote
- env: TASK=api_docs TARGET="//rb:"
- env: TASK=java TARGET=firefox
- env: TASK=java TARGET=ff-legacy
before_script:
- sh -e /etc/init.d/xvfb start
script:
Expand Down Expand Up @@ -113,7 +117,14 @@ script:
fi
- |
if [[ $TASK == "java" ]]; then
./go test_$TARGET
case $TARGET in
ff-legacy)
./go test_firefox
firefox)
./go //java/client/test/org/openqa/selenium/firefox:marionette:run
*)
./go test_$TARGET
esac
fi
- |
if [[ $TASK == "py" ]]; then
Expand Down

0 comments on commit 6f6fe4f

Please sign in to comment.