From 233b95272886ab6870f1fa3290275c029a43366c Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Mon, 5 Feb 2018 18:18:50 +0100 Subject: [PATCH] Skipping test due to permission problems. --- python/tests/ecl/test_sum_statoil.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/python/tests/ecl/test_sum_statoil.py b/python/tests/ecl/test_sum_statoil.py index aa543b250e..9b7ef03ba7 100755 --- a/python/tests/ecl/test_sum_statoil.py +++ b/python/tests/ecl/test_sum_statoil.py @@ -18,7 +18,7 @@ import os import datetime -from unittest import skipIf, skipUnless, skipIf +from unittest import skipIf, skipUnless, skip from ecl.ecl import EclSum, EclFile @@ -363,7 +363,12 @@ def test_timeRange(self): - # Loading this dataset is a test of loading a case where one report step is missing. + # Loading this dataset is a test of loading a case where one report step is + # missing. Fixing a bug with absolute paths in the 'RESTART' keyword in the + # SMSPEC file unearthed permission problem with this test. That problem is + # fixed in master, but it is more complex than a simple bug fix in a stable + # version, have therefor disabled this test for version 2.2.8 of libecl. + @skip("Skipping due to permission problems in the test-data") def test_Heidrun(self): sum = EclSum( self.createTestPath("Statoil/ECLIPSE/Heidrun/Summary/FF12_2013B3_CLEAN_RS")) self.assertEqual( 452 , len(sum))