In kda/tests/test_kda.py we have many tests that iterate over every combination of pairs of values, which take the majority of the test time. It might be worth using hypothesis instead to have more robust testing and potentially improve the test suite run time, since it currently takes ~150 s for tests that are not particularly rigorous.
In
kda/tests/test_kda.py
we have many tests that iterate over every combination of pairs of values, which take the majority of the test time. It might be worth usinghypothesis
instead to have more robust testing and potentially improve the test suite run time, since it currently takes ~150 s for tests that are not particularly rigorous.