not create a junit report, but instead to show test run results in the ant output stream. Modified .travis.yml to use unittest-no-junit-report instead of unittest, and to change directory to core before doing the build and unittest.
8 lines
168 B
YAML
8 lines
168 B
YAML
language: java
|
|
jdk:
|
|
- oraclejdk7
|
|
script:
|
|
- "cd core"
|
|
- "ant -buildfile build.xml clean checkascii build jar"
|
|
- "ant -buildfile build.xml unittest-no-junit-report"
|