mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
13 lines
587 B
CMake
13 lines
587 B
CMake
file(GLOB PY_FILES *.py)
|
|
|
|
PLUGIN_INSTALL(grassprovider tests ${PY_FILES})
|
|
|
|
if(ENABLE_TESTS)
|
|
include(UsePythonTest)
|
|
ADD_PYTHON_TEST(ProcessingGrassAlgorithmsImageryTest grass_algorithms_imagery_test.py)
|
|
ADD_PYTHON_TEST(ProcessingGrassAlgorithmsRasterTestPt1 grass_algorithms_raster_test_pt1.py)
|
|
ADD_PYTHON_TEST(ProcessingGrassAlgorithmsRasterTestPt2 grass_algorithms_raster_test_pt2.py)
|
|
ADD_PYTHON_TEST(ProcessingGrassAlgorithmsVectorTest grass_algorithms_vector_test.py)
|
|
ADD_PYTHON_TEST(ProcessingGrassAlgsPostgreRasterProvider grass_algorithm_postgreraster_test.py)
|
|
endif()
|