[GRASS-SVN] r74420 - grass/trunk/temporal/t.rast.neighbors/testsuite

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Apr 24 13:32:12 PDT 2019


Author: sbl
Date: 2019-04-24 13:32:12 -0700 (Wed, 24 Apr 2019)
New Revision: 74420

Modified:
   grass/trunk/temporal/t.rast.neighbors/testsuite/test_neighbors.py
Log:
temporarily deactivate for Python 3; see #3825

Modified: grass/trunk/temporal/t.rast.neighbors/testsuite/test_neighbors.py
===================================================================
--- grass/trunk/temporal/t.rast.neighbors/testsuite/test_neighbors.py	2019-04-24 20:25:54 UTC (rev 74419)
+++ grass/trunk/temporal/t.rast.neighbors/testsuite/test_neighbors.py	2019-04-24 20:32:12 UTC (rev 74420)
@@ -6,10 +6,13 @@
 """
 
 import os
+import sys
+import unittest
 import grass.temporal as tgis
 from grass.gunittest.case import TestCase
 from grass.gunittest.gmodules import SimpleModule
 
+ at unittest.skipIf(sys.version_info[0] > 2, "temporary disabled")
 class TestAggregationAbsolute(TestCase):
 
     @classmethod



More information about the grass-commit mailing list