From 0cf469e933be5d84561a0ff40357c7dc3c4458a2 Mon Sep 17 00:00:00 2001
From: Stephan Seitz <stephan.seitz@fau.de>
Date: Wed, 7 Aug 2019 17:18:56 +0200
Subject: [PATCH] Temporary skip two test on Travis CI

---
 tests/backends/test_torch_native_compilation.py | 1 +
 tests/test_tfmad.py                             | 1 +
 2 files changed, 2 insertions(+)

diff --git a/tests/backends/test_torch_native_compilation.py b/tests/backends/test_torch_native_compilation.py
index 6a7a053..b291f67 100644
--- a/tests/backends/test_torch_native_compilation.py
+++ b/tests/backends/test_torch_native_compilation.py
@@ -132,6 +132,7 @@ def test_torch_native_compilation():
     print(output)
 
 
+@pytest.mark.skipif("TRAVIS" in os.environ, reason="Temporary skip")
 def test_generate_torch_gpu():
     x, y = pystencils.fields('x, y: float32[2d]')
 
diff --git a/tests/test_tfmad.py b/tests/test_tfmad.py
index c1a28f5..54daaba 100644
--- a/tests/test_tfmad.py
+++ b/tests/test_tfmad.py
@@ -57,6 +57,7 @@ def test_tfmad_two_stencils():
 
 
 @pytest.mark.skipif("NO_TENSORFLOW_TEST" in os.environ, reason="Requires Tensorflow")
+@pytest.mark.skipif("TRAVIS" in os.environ, reason="Temporary skip")
 def test_tfmad_gradient_check():
     a, b, out = ps.fields("a, b, out: double[21,13]")
     print(a.shape)
-- 
GitLab