adds logback.xml to src/test/resources to remove DEBUG-level logging
remove the utests namespace from src/test/java/ome/codecs
sets up pom.xml to have multiple execution with different dependencies excluded rather than a single one and use regexp rather than testng.xml
Without this PR, the Travis build should have verbose logging and only run 14 tests (the ones defined in testng.xml). With this PR, there should be two surefire executions, one with 14 tests and one with 2 tests (for the missing services) and the logging verbosity should be reduced.
With this
This PR does three things:
logback.xml
tosrc/test/resources
to remove DEBUG-level loggingutests
namespace fromsrc/test/java/ome/codecs
pom.xml
to have multiple execution with different dependencies excluded rather than a single one and use regexp rather thantestng.xml
Without this PR, the Travis build should have verbose logging and only run 14 tests (the ones defined in
testng.xml
). With this PR, there should be two surefire executions, one with 14 tests and one with 2 tests (for the missing services) and the logging verbosity should be reduced. With this