Make it possible to use the test job related features with the commit extractor

This commit is contained in:
Marco Castelluccio 2019-10-12 00:30:37 +01:00
Родитель ef0e4baa16
Коммит c68d469489
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -266,6 +266,8 @@ class CommitExtractor(BaseEstimator, TransformerMixin):
continue
res = feature_extractor(commit["bug"])
elif "test_scheduling_features" in feature_extractor.__module__:
res = feature_extractor(commit["test_job"])
else:
res = feature_extractor(commit)