You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ma...@apache.org on 2018/08/29 15:03:59 UTC

[incubator-mxnet] branch master updated: Disabled flaky test: test_mkldnn.test_activation (#12378)

This is an automated email from the ASF dual-hosted git repository.

marcoabreu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new 65c374d  Disabled flaky test: test_mkldnn.test_activation (#12378)
65c374d is described below

commit 65c374db28941c9dc57e89b45c61779a55fd3025
Author: Anton Chernov <me...@gmail.com>
AuthorDate: Wed Aug 29 17:03:42 2018 +0200

    Disabled flaky test: test_mkldnn.test_activation (#12378)
    
    * Disabled flaky test: test_mkldnn.test_activation
    
    * Revert accidental change
---
 tests/python/mkl/test_mkldnn.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/python/mkl/test_mkldnn.py b/tests/python/mkl/test_mkldnn.py
index 6287bfc..ba4cf3f 100644
--- a/tests/python/mkl/test_mkldnn.py
+++ b/tests/python/mkl/test_mkldnn.py
@@ -22,6 +22,7 @@ import sys
 import os
 import numpy as np
 import mxnet as mx
+import unittest
 from mxnet.test_utils import rand_ndarray, assert_almost_equal
 from mxnet import gluon
 from mxnet.gluon import nn
@@ -280,6 +281,7 @@ def test_pooling():
         check_pooling_training(stype)
 
 
+@unittest.skip("Flaky test: https://github.com/apache/incubator-mxnet/issues/12377")
 @with_seed()
 def test_activation():
     def check_activation_training(stype):