tests__specific
tests__specific
- tests__specific()[source]
Modules containing estimator specific tests, for test triggers and execution.
Part of packaging metadata for the object, used only in
sktimeCI.String name:
"tests:specific"Private tag, developer and framework facing
Values: list of str, or None
Example:
["sktime.forecasting.tests.test_croston"]Default:
None
sktime’s CI framework regularly tests estimators in pull requests, usually only estimators that have changed.The
tests:specifictag of an object is a list of strings, it specifies modules that contain estimator specific pytest tests.Setting this tag has two effects:
testing the estimator is triggered whenever any listed module has changed, in addition to the other test trigger conditions, e.g., via
tests:libs.test_estCI VM runs execute the listed pytest test modules for that estimator (seesktime.tests._test_vm._get_estimator_specific_test_modules)
The
tests:specifictag is not used in user facing checks, error messages, or recommended build processes otherwise.

