Arturo
Arturo

Reputation: 71

Django - Running tests multiple times with different fixtures

Is there way to run tests multiple times with different fixtures with django-nose (or any other library)? I want to check how my project runs with different number of data. As I searched I find out that there is no way to pass fixtures as argument to manage.py test.

Best regards

Upvotes: 1

Views: 498

Answers (1)

Adam Starrh
Adam Starrh

Reputation: 6958

You can load your preferred fixture before each test. See the Docs

Upvotes: 0

Related Questions