scikit-adaptation / skada

Domain adaptation toolbox compatible with scikit-learn and pytorch
https://scikit-adaptation.github.io/
BSD 3-Clause "New" or "Revised" License
54 stars 16 forks source link

Avoid the `--ignore skada/deep` in pytest CI #132

Closed tgnassou closed 4 months ago

tgnassou commented 4 months ago

For now to skip the test for the deep methods we use --ignore skada/deep option in pytest. We can try to avoid that by using importorskip function of pytest, or moving the tests outside the module skada. The first is the best one but brought some problems when I tried it.