openml / openml-python

OpenML's Python API for a World of Data and More 💫
http://openml.github.io/openml-python/
Other
280 stars 144 forks source link

Migrate all unittests to pytest #1252

Open Taniya-Das opened 1 year ago

Taniya-Das commented 1 year ago

[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/

PGijsbers commented 1 year ago

Working on test_utils: #1269