Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

[MXNET-1217] Clean up the way of testing #13295

Merged
merged 1 commit into from
Nov 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ scalaclean:

scalapkg:
(cd $(ROOTDIR)/scala-package; \
mvn package -P$(SCALA_PKG_PROFILE),$(SCALA_VERSION_PROFILE),integrationtest -Dcxx="$(CXX)" \
mvn package -P$(SCALA_PKG_PROFILE),$(SCALA_VERSION_PROFILE) -Dcxx="$(CXX)" \
-Dbuild.platform="$(SCALA_PKG_PROFILE)" \
-Dcflags="$(CFLAGS)" -Dldflags="$(LDFLAGS)" \
-Dcurrent_libdir="$(ROOTDIR)/lib" \
Expand Down
10 changes: 4 additions & 6 deletions scala-package/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
<relativePath>../pom.xml</relativePath>
</parent>

<properties>
<skipTests>true</skipTests>
</properties>

<artifactId>mxnet-core_2.11</artifactId>
<name>MXNet Scala Package - Core</name>

Expand All @@ -20,12 +24,6 @@
<skipTests>false</skipTests>
</properties>
</profile>
<profile>
<id>integrationtest</id>
<properties>
<skipTests>true</skipTests>
</properties>
</profile>
<profile>
<id>osx-x86_64-cpu</id>
<properties>
Expand Down
10 changes: 4 additions & 6 deletions scala-package/examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,11 @@
<artifactId>mxnet-examples_2.11</artifactId>
<name>MXNet Scala Package - Examples</name>

<properties>
<skipTests>true</skipTests>
</properties>

<profiles>
<profile>
<id>unittest</id>
<properties>
<skipTests>true</skipTests>
</properties>
</profile>
<profile>
<id>integrationtest</id>
<properties>
Expand Down
10 changes: 4 additions & 6 deletions scala-package/infer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,17 @@
<artifactId>mxnet-infer_2.11</artifactId>
<name>MXNet Scala Package - Inference</name>

<properties>
<skipTests>true</skipTests>
</properties>

<profiles>
<profile>
<id>unittest</id>
<properties>
<skipTests>false</skipTests>
</properties>
</profile>
<profile>
<id>integrationtest</id>
<properties>
<skipTests>true</skipTests>
</properties>
</profile>
<profile>
<id>osx-x86_64-cpu</id>
<properties>
Expand Down