2024-12-27 15:15:25 +01:00
|
|
|
if not stable or not release or gimp_version.endswith('+git') or get_option('file-plug-ins-test')
|
2023-11-22 11:56:38 -05:00
|
|
|
|
|
|
|
# This does not get installed for releases
|
2025-05-28 21:35:27 -03:00
|
|
|
python_plugins += {
|
2023-11-22 11:56:38 -05:00
|
|
|
'name': 'test-file-plug-ins',
|
|
|
|
'srcs': [
|
|
|
|
# modules
|
|
|
|
'tests/test-file-plug-ins/gimplogger.py',
|
|
|
|
'tests/test-file-plug-ins/gimpconfig.py',
|
|
|
|
'tests/test-file-plug-ins/gimptestframework.py',
|
|
|
|
'tests/test-file-plug-ins/gimpexporttests.py',
|
|
|
|
# actual GIMP plug-in
|
|
|
|
'tests/test-file-plug-ins/test-file-plug-ins.py',
|
|
|
|
# scripts to start the tests in batch mode
|
|
|
|
'tests/test-file-plug-ins/batch-import-tests.py',
|
|
|
|
'tests/test-file-plug-ins/batch-export-tests.py',
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
# configuration data for the tests
|
|
|
|
subdir('tests')
|
|
|
|
|
|
|
|
endif
|