pytest runner and observer
Project description
pytest-fly
pytest-fly aids the development, debug, and execution of complex code bases and test suites.
Features
- Real-time monitoring of test execution in a GUI with six tabs:
- Run — start/stop controls, run mode selection (Restart/Resume), pass rate, coverage percentage, elapsed time, and estimated time remaining
- Graph — time-based progress chart showing each test module as a horizontal bar
- Table — per-test status grid with elapsed time, peak CPU, memory usage, and individual coverage
- Coverage — line chart of combined code coverage over time with covered/total line counts
- Configuration — parallelism settings, refresh rate, and utilization thresholds
- About — system and project information
- Parallel test execution at the module level with configurable process count.
- Resumable test execution — skip already-passed tests and only re-run failed or unrun tests.
- Graceful interruption — stop the test suite and resume where it left off.
- Per-process resource monitoring — tracks peak CPU and memory usage for each test module.
- Estimated time remaining based on prior run durations, accounting for parallelism.
- Code coverage tracking — each test writes its own coverage data, combined automatically as tests complete. The Coverage tab plots coverage over time, and the Table shows per-test coverage. Coverage persists across restarts so previously-passed tests contribute to the total.
- Singleton test support via
@pytest.mark.singleton— singleton tests run exclusively with no other tests executing concurrently.
Installation
You can install pytest-fly via pip from PyPI:
pip install pytest-fly
Parallelism
By default, pytest-fly executes modules (.py files) in parallel.
Functions inside a module are executed serially with respect to each other. No parallelism is performed for functions inside a module. For example, if a set of tests use a shared resource that does not support concurrent access, putting those tests in the same module ensures the tests do not conflict.
Modules can optionally be marked as a singleton via the @pytest.mark.singleton marker. When a singleton test
runs, all other workers wait until it completes before starting new tests. This is enforced at runtime, not
just by scheduling order.
In pytest terms, each module is run in a separate subprocess. Therefore, a pytest fixture with a session scope
will actually be executed multiple times, once for each module.
Note that test concurrency in pytest-fly is different from pytest-xdist. group-by in pytest-xdist is
analogous to putting the tests in the same module in pytest-fly.
Test Scheduling
pytest-fly orders tests to surface actionable information earlier:
- Tests that failed in the prior run are re-run first, so developers get faster feedback on tests they are likely fixing.
- When prior run data is available, tests with higher coverage efficiency (lines/second) are run earlier. This way, if there is a problem in the code, it is more likely to be found earlier in the test run.
singletontests are run last to maximize parallel throughput before exclusive execution begins.
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytest_fly-0.3.28.tar.gz.
File metadata
- Download URL: pytest_fly-0.3.28.tar.gz
- Upload date:
- Size: 3.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.5 cpython/3.14.3 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fca07b0c4a84899aecd2b1142ef713cf8ed6605a69251e4ecc5c9b07e434d66
|
|
| MD5 |
5297110fb3095649f0eb88093094c51c
|
|
| BLAKE2b-256 |
59e984566df28b57469fd3549df94b8ddf68611764f4495a5508984fb8d79e78
|
File details
Details for the file pytest_fly-0.3.28-py3-none-any.whl.
File metadata
- Download URL: pytest_fly-0.3.28-py3-none-any.whl
- Upload date:
- Size: 111.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.5 cpython/3.14.3 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10c0417fb73202e893912cada09f231e2b1e94d95c8a3bc1ee20170f6d691310
|
|
| MD5 |
885114c1831e6f3cd74c9e8a10236a12
|
|
| BLAKE2b-256 |
e5f92ef7ae19228f13dfd5aa0c65d562df258458e85fb3813b19af0cf52cf200
|