adamchainz / django-perf-rec

Keep detailed records of the performance of your Django code.
MIT License
347 stars 25 forks source link

Fetch test name from pytest #537

Closed gvangool closed 1 year ago

gvangool commented 1 year ago

When using the pytest parametrize marker and a random test order, there will be test failures if the queries/caching changes between those parameters.

Instead of having test_name and test_name.2, it would become test_name[{value}].

Relates to #346