You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This works: mvn clean test -Dtest=RemoteTableTest -DinstanceUri=<HostAndPort>
but this fails: mvn clean package -Dtest=RemoteTableTest -DinstanceUri=<HostAndPort>
The exception when doing it with mvn package is:
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 10.112 sec <<< FAILURE! - in co.cask.cdap.remote.dataset.test.RemoteTableTest
test(co.cask.cdap.remote.dataset.test.RemoteTableTest) Time elapsed: 9.716 sec <<< ERROR!
java.lang.RuntimeException: java.io.IOException: No application classes found in artifact 'artifact:default.TableDatasetApp.1.0.0-SNAPSHOT'.
at co.cask.cdap.client.util.RESTClient.upload(RESTClient.java:153)
at co.cask.cdap.client.ApplicationClient.deployApp(ApplicationClient.java:366)
at co.cask.cdap.client.ApplicationClient.deploy(ApplicationClient.java:295)
at co.cask.cdap.test.IntegrationTestManager.deployApplication(IntegrationTestManager.java:154)
at co.cask.cdap.test.AudiTestBase.deployApplication(AudiTestBase.java:218)
at co.cask.cdap.test.AudiTestBase.deployServiceForDataset(AudiTestBase.java:260)
at co.cask.cdap.test.AudiTestBase.getTableDataset(AudiTestBase.java:236)
at co.cask.cdap.remote.dataset.test.RemoteTableTest.test(RemoteTableTest.java:33)
The text was updated successfully, but these errors were encountered:
This works:
mvn clean test -Dtest=RemoteTableTest -DinstanceUri=<HostAndPort>
but this fails:
mvn clean package -Dtest=RemoteTableTest -DinstanceUri=<HostAndPort>
The exception when doing it with
mvn package
is:The text was updated successfully, but these errors were encountered: