Mip Convert Functional Tests
Warning
This documentation is currently under construction and may not be up to date.
-
Create a test class (pattern: test_
) in mip_convert.tests.test_functional. . -
Import the functional tests class for MIP convert tests
from mip_convert.tests.test_functional.test_command_line import AbstractFunctionalTests
-
Extends your test class from the
AbstractFuntionalTests
-
Implement the
get_test_data
function:- The function should return the test data as an TestData object (e.g. Cmip6TestData or AriseTestData)
- The available TestData objects are in mip_convert.tests.test_functional.utils.configurations
- Specify the necessary individual values of the TestData object (like mip_table, variable, specific_info, etc.)
- For examples, see tests in mip_covert/tests/test_functional
-
Implement your test method that runs check_convert. This function will trigger MIP convert with your given test data.
-
Mark your test as a slow test by add following annotation to your test method
@attr('slow')
Note
For debugging a MIP convert functional test, remove the slow annotation of the test. Afterwards you can run the test as usual in your IDE.