Skip to content

Commit 1a819a3

Browse files
committed
more error allowed.
1 parent 8a53047 commit 1a819a3

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

docker/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# Build the docker containers
2424

2525
# The first build is for running systemds through docker.
26-
docker image build -f docker/sysds.Dockerfile -t apache/systemds:latest .
26+
# docker image build -f docker/sysds.Dockerfile -t apache/systemds:latest .
2727

2828
# The second build is for testing systemds. This image installs the R dependencies needed to run the tests.
2929
docker image build -f docker/testsysds.Dockerfile -t apache/systemds:testing-latest .

docker/entrypoint.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ export MAVEN_OPTS="-Xmx512m"
3030

3131
log="/tmp/sysdstest.log"
3232
mvn -ntp -B test-compile 2>&1 | grep -E "BUILD|Total time:|---|Building SystemDS"
33-
mvn -ntp -B test -D maven.test.skip=false -D automatedtestbase.outputbuffering=true -D test=$1 2>&1 | grep -v "already exists in destination." | tee $log
33+
mvn -ntp -B test -D maven.test.skip=false -D automatedtestbase.outputbuffering=true -D test=$1 2>&1 \
34+
| grep -v "already exists in destination." \
35+
| grep -v 'WARNING: Using incubator modules' | tee $log
3436

3537
# Merge Federated test runs.
3638
[ -f target/jacoco.exec ] && mv target/jacoco.exec target/jacoco_main.exec

src/test/java/org/apache/sysds/test/functions/federated/primitives/part3/FederatedWeightedDivMatrixMultTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public class FederatedWeightedDivMatrixMultTest extends AutomatedTestBase {
6161

6262
private final static String OUTPUT_NAME = "Z";
6363

64-
private final static double TOLERANCE = 1e-9;
64+
private final static double TOLERANCE = 1e-8;
6565

6666
private final static int BLOCKSIZE = 1024;
6767

0 commit comments

Comments
 (0)