mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
vector.features Allows for optimising the request through subsets of attributes or no geometry fetching
16 lines
653 B
CMake
16 lines
653 B
CMake
FILE(GLOB PY_FILES *.py)
|
|
FILE(GLOB TEST_DATA_FILES data/*)
|
|
|
|
PLUGIN_INSTALL(processing tests ${PY_FILES})
|
|
PLUGIN_INSTALL(processing tests/data ${TEST_DATA_FILES})
|
|
|
|
IF(ENABLE_TESTS)
|
|
INCLUDE(UsePythonTest)
|
|
ADD_PYTHON_TEST(ProcessingParametersTest ParametersTest.py)
|
|
ADD_PYTHON_TEST(ProcessingToolsTest ToolsTest.py)
|
|
ADD_PYTHON_TEST(ProcessingQgisAlgorithmsTest QgisAlgorithmsTest.py)
|
|
ADD_PYTHON_TEST(ProcessingGdalAlgorithmsTest GdalAlgorithmsTest.py)
|
|
ADD_PYTHON_TEST(ProcessingGrass7AlgorithmsImageryTest Grass7AlgorithmsImageryTest.py)
|
|
ADD_PYTHON_TEST(ProcessingGrass7AlgorithmsRasterTest Grass7AlgorithmsRasterTest.py)
|
|
ENDIF(ENABLE_TESTS)
|