[edited by @PGijsbers] Currently a lot of unit tests are written with the unittest module, but we want to use pytest instead. Generally speaking, this means extracting the test methods into pytest functions, optionally adding things like pytest fixtures to replace setup/tear-down logic and using plain assert instead of the unittest-based assert methods. Below is an overview of which files have already been migrated:
openml-python/tests/
[edited by @PGijsbers] Currently a lot of unit tests are written with the
unittestmodule, but we want to usepytestinstead. Generally speaking, this means extracting the test methods into pytest functions, optionally adding things like pytest fixtures to replace setup/tear-down logic and using plainassertinstead of theunittest-based assert methods. Below is an overview of which files have already been migrated:openml-python/tests/