moves-rwth / stormvogel

Storm for almost everyone
2 stars 0 forks source link

Testing framework #3

Closed YouGuessedMyName closed 2 months ago

YouGuessedMyName commented 2 months ago

Right now, testing is just done using functions with assert statements. This is quite unusual for a Python project. I suggest we switch to the unittest framework.

linusheck commented 2 months ago

We're currently using the pytest framework, which indeed just uses functions and assertions. I personally prefer pytest over unittest. Here's a comprehensive comparison

YouGuessedMyName commented 2 months ago

Then let's stick to that