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/24 16:09:56 UTC

[incubator-mxnet] branch master updated: [MXAPPS-581] Disable a long test in the SD nightly. (#12326)

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 ac10e95  [MXAPPS-581] Disable a long test in the SD nightly. (#12326)
ac10e95 is described below

commit ac10e95fc8e128c6f44c11947fe6571395a251fe
Author: Vishaal Kapoor <40...@users.noreply.github.com>
AuthorDate: Fri Aug 24 09:09:42 2018 -0700

    [MXAPPS-581] Disable a long test in the SD nightly. (#12326)
    
    * Disable a test that's taking longer than 10 minutes with the Python 2
      interpreter in the Straight Dope Nightly.
---
 tests/nightly/straight_dope/test_notebooks_single_gpu.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/tests/nightly/straight_dope/test_notebooks_single_gpu.py b/tests/nightly/straight_dope/test_notebooks_single_gpu.py
index a60498c..555b809 100644
--- a/tests/nightly/straight_dope/test_notebooks_single_gpu.py
+++ b/tests/nightly/straight_dope/test_notebooks_single_gpu.py
@@ -35,6 +35,7 @@ NOTEBOOKS_WHITELIST = [
     'chapter02_supervised-learning/environment',
     'chapter03_deep-neural-networks/kaggle-gluon-kfold',
     'chapter04_convolutional-neural-networks/deep-cnns-alexnet',  # > 10 mins.
+    'chapter05_recurrent-neural-networks/rnns-gluon', # > 10 mins.
     'chapter06_optimization/gd-sgd-scratch',  # Overflow warning is intended.
     'chapter06_optimization/gd-sgd-gluon',  # Overflow warning is intended.
     'chapter07_distributed-learning/multiple-gpus-scratch',
@@ -176,9 +177,6 @@ class StraightDopeSingleGpuTests(unittest.TestCase):
     def test_gru_scratch(self):
         assert _test_notebook('chapter05_recurrent-neural-networks/gru-scratch')
 
-    def test_rnns_gluon(self):
-        assert _test_notebook('chapter05_recurrent-neural-networks/rnns-gluon')
-
     # Chapter 6
 
     def test_optimization_intro(self):