Exemplo n.º 1
0
    def run_tests(self):
        from ocgis.test import run_simple

        attrs = ['simple']
        if self.with_optional:
            to_append = 'optional'
            attrs.append(to_append)

        run_simple(attrs=attrs, verbose=False)
import os
from ocgis.test import run_simple

# Set GDAL_DATA. This is done normally done by the activate script,
# but this doesn't happen in the testing environment.
if 'LIBRARY_PREFIX' in os.environ:  # Windows.
    gdalData = os.path.join(os.environ['LIBRARY_PREFIX'], 'share', 'gdal')
else:  # Linux/OS X.
    gdalData = os.path.join(os.environ['PREFIX'], 'share', 'gdal')

os.environ['GDAL_DATA'] = gdalData

run_simple()