فهرست منبع

temporarily deactivate for Python 3; see https://trac.osgeo.org/grass/ticket/3825

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@74420 15284696-431f-4ddb-bdfa-cd5b030d7da7
Stefan Blumentrath 6 سال پیش
والد
کامیت
bbd2789af1
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      temporal/t.rast.neighbors/testsuite/test_neighbors.py

+ 3 - 0
temporal/t.rast.neighbors/testsuite/test_neighbors.py

@@ -6,10 +6,13 @@ Created on Wed Feb 17 19:53:04 2016
 """
 
 import os
+import sys
+import unittest
 import grass.temporal as tgis
 from grass.gunittest.case import TestCase
 from grass.gunittest.gmodules import SimpleModule
 
+@unittest.skipIf(sys.version_info[0] > 2, "temporary disabled")
 class TestAggregationAbsolute(TestCase):
 
     @classmethod