You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now test_CL, test_HC, test_seeds and test_weights all have a data function.
We can put the data fixture into a conftest.py file that is global so that all tests can use the data function.
I also noticed that sometimes data() also takes a G parameter. We can use pytest.mark.parameterize to allow for multiple tests at different numbers of clusters for test robustness.
The text was updated successfully, but these errors were encountered:
Right now
test_CL
,test_HC
,test_seeds
andtest_weights
all have a data function.We can put the
data
fixture into aconftest.py
file that is global so that all tests can use thedata
function.I also noticed that sometimes
data()
also takes aG
parameter. We can usepytest.mark.parameterize
to allow for multiple tests at different numbers of clusters for test robustness.The text was updated successfully, but these errors were encountered: