django-slow-tests icon indicating copy to clipboard operation
django-slow-tests copied to clipboard

Locate your slowest tests.

Results 8 django-slow-tests issues
Sort by recently updated
recently updated
newest added

Added Github Actions for testing on all Python and Django versions. * Python 2.7: Django 1.6, 1.7, 1.8, 1.9, 1.10, 1.11 * Python 3.6, 3.7: Django 1.8, 1.9, 1.10, 1.11,...

I have added django-slow-tests to a Django 3.1-based project. `--slowreport` works fine, but `--slowreportpath` is failing with this stacktrace: ``` $ ./manage.py test --slowreport --slowreportpath=report.json Creating test database for alias...

I'm currently getting an error when trying to use Django 2.0.

Time spent on SetupTestData is counted into the first test in the testcase. That's not fair to compare.

There is a small typo in django_slowtests/testrunner.py. Should read `milliseconds` rather than `miliseconds`.

The latest release is 0.5.1, which does not include the freezegun fix found at https://github.com/realpython/django-slow-tests/commit/91202a636511bf7e6384f90105e512f3f1aa98d7. Please can you create another release? Thanks!

Hi I am working on a django project and aim to find the slow running test cases. When I use django-slow-tests with --parallel option like ``` python manage.py test --settings=test_settings...