Scrutinize your pytest test suites for slow fixtures, tests and more.
Project description
pytest-scrutinize
Big test suites for large projects can be a pain to optimize. pytest-scrutinize
helps you
profile your test runs by exporting detailed timings as JSON for the following things:
- Tests
- Fixture setup/teardowns
- Django SQL queries
- pytest-xdist worker boot times
- Arbitrary functions
- Garbage collections
- Pytest setup/collection times
All data is associated with the currently executing test or fixture. As an example, you can use this to find all the Django SQL queries executed within a given fixture across your entire test suite.
Installation:
Install with pip from PyPI
pip install pytest-scrutinize
Usage:
Run your test suite with the --scrutinize
flag, passing a file path to write to:
pytest --scrutinize=test-timings.jsonl.gz
Analysing the results
A tool to help with analysing this data is not included yet, however it can be quickly explored with DuckDB. For example, to find the top 10 fixtures by total duration along with the number of tests that where executed:
select name,
to_microseconds(sum(runtime.as_microseconds)::bigint) as duration,
count(distinct test_id) as test_count
from 'test-timings.jsonl.gz'
where type = 'fixture'
group by all
order by duration desc
limit 10;
Or the tests with the highest number of duplicated SQL queries executed as part of it or any fixture it depends on:
select test_id,
sum(count) as duplicate_queries,
count(distinct sql_hash) as unique_queries,
FROM (SELECT test_id, fixture_name, sql_hash, COUNT(*) AS count
from 'test-timings.jsonl.gz'
where type = 'django-sql'
GROUP BY all
HAVING count > 1)
group by all
order by duplicate_queries desc limit 10;
Data captured:
The resulting file will contain newline-delimited JSON objects. The Pydantic models for these can be found here.
All events captured contain a meta
structure that contains the xdist
worker (if any), the
absolute time the timing was taken and the Python thread name that the timing was captured in.
Meta example
{
"meta": {
"worker": "gw0",
"recorded_at": "2024-08-17T22:02:44.956924Z",
"thread_id": 3806124,
"thread_name": "MainThread"
}
}
All durations are expressed with the same structure, containing the duration in different formats: nanoseconds, microseconds, ISO 8601 and text
Duration example
{
"runtime": {
"as_nanoseconds": 60708,
"as_microseconds": 60,
"as_iso": "PT0.00006S",
"as_text": "60 microseconds"
}
}
Fixture setup and teardown
Pytest fixtures can be simple functions, or context managers that can clean up resources after a
test has finished. pytest-scrutinize
records both the setup and teardown times for all fixtures,
allowing you to precisely locate performance bottlenecks:
@pytest.fixture
def slow_teardown():
yield
time.sleep(1)
Example
{
"meta": {
"worker": "master",
"recorded_at": "2024-08-17T21:23:54.736177Z",
"thread_name": "MainThread"
},
"type": "fixture",
"name": "pytest_django.plugin._django_set_urlconf",
"short_name": "_django_set_urlconf",
"test_id": "tests/test_plugin.py::test_all[normal]",
"scope": "function",
"setup": {
"as_nanoseconds": 5792,
"as_microseconds": 5,
"as_iso": "PT0.000005S",
"as_text": "5 microseconds"
},
"teardown": {
"as_nanoseconds": 2167,
"as_microseconds": 2,
"as_iso": "PT0.000002S",
"as_text": "2 microseconds"
},
"runtime": {
"as_nanoseconds": 7959,
"as_microseconds": 7,
"as_iso": "PT0.000007S",
"as_text": "7 microseconds"
}
}
Django SQL queries
Information on Django SQL queries can be captured with the --scrutinize-django-sql
flag. By
default, the hash of the SQL query is captured (allowing you to count duplicate queries), but
the raw SQL can also be captured:
# Log the hashes of the executed SQL queries
pytest --scrutinize=test-timings.jsonl.gz --scrutinize-django-sql
# Log raw SQL queries. Warning: May produce very large files!
pytest --scrutinize=test-timings.jsonl.gz --scrutinize-django-sql=query
Example
{
"meta": {
"worker": "master",
"recorded_at": "2024-08-17T22:02:47.218492Z",
"thread_name": "MainThread"
},
"name": "django_sql",
"test_id": "test_django.py::test_case",
"fixture_name": "test_django.teardown_fixture",
"runtime": {
"as_nanoseconds": 18375,
"as_microseconds": 18,
"as_iso": "PT0.000018S",
"as_text": "18 microseconds"
},
"type": "django-sql",
"sql_hash": "be0beb84a58eab3bdc1fc4214f90abe9e937e5cc7f54008e02ab81d51533bc16",
"sql": "INSERT INTO \"django_app_dummymodel\" (\"foo\") VALUES (%s) RETURNING \"django_app_dummymodel\".\"id\""
}
Record additional functions
Any arbitrary Python function can be captured by passing a comma-separated string of paths to
--scrutinize-func
:
# Record all boto3 clients that are created, along with their timings:
pytest --scrutinize=test-timings.jsonl.gz --scrutinize-func=botocore.session.Session.create_client
Example
{
"meta": {
"worker": "gw0",
"recorded_at": "2024-08-17T22:02:44.296938Z",
"thread_name": "MainThread"
},
"name": "urllib.parse.parse_qs",
"test_id": "test_mock.py::test_case",
"fixture_name": "test_mock.teardown_fixture",
"runtime": {
"as_nanoseconds": 2916,
"as_microseconds": 2,
"as_iso": "PT0.000002S",
"as_text": "2 microseconds"
},
"type": "mock"
}
Garbage collection
Garbage collection events can be captured with the --scrutinize-gc
flag. Every GC is captured,
along with the total time and number of objects collected. This can be used to find tests that
generate significant GC pressure by creating lots of circular-referenced objects:
pytest --scrutinize=test-timings.jsonl.gz --scrutinize-gc
Example
{
"meta": {
"worker": "gw0",
"recorded_at": "2024-08-17T22:02:44.962665Z",
"thread_name": "MainThread"
},
"type": "gc",
"runtime": {
"as_nanoseconds": 5404333,
"as_microseconds": 5404,
"as_iso": "PT0.005404S",
"as_text": "5404 microseconds"
},
"collected_count": 279,
"generation": 2
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytest_scrutinize-0.1.6.tar.gz
.
File metadata
- Download URL: pytest_scrutinize-0.1.6.tar.gz
- Upload date:
- Size: 23.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a7adaa6d2922e7345f8ccd404068b02462dba0123c616c0d0e8c3cb9cc63e38 |
|
MD5 | 9883058ce6750869d1bc43e5eae7f6a6 |
|
BLAKE2b-256 | d284b320a016369d22f691983827de4f00047512c69520fc2dc9dcf79be0454d |
File details
Details for the file pytest_scrutinize-0.1.6-py3-none-any.whl
.
File metadata
- Download URL: pytest_scrutinize-0.1.6-py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49aba559b49cb7bc35783af16e98cc07fa9e85852d729e6b600570bf5cd0ef23 |
|
MD5 | fdc6cf77cae20f7e726822115a447448 |
|
BLAKE2b-256 | 79cf6a9447da89591f130ed88a6e31ff8881fcfc82e1bfa840a874203b5974ed |