Skip to main content

pytest runner and observer

Project description

pytest-fly

CI codecov PyPI Python License

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/Check), and several panels: a Status panel (completion percentage, pass rate, per-state counts, elapsed time, average parallelism, coverage, and estimated time remaining), a System Performance panel (live CPU and memory charts, with memory shown as used/total GB alongside percent), a Failed Tests panel with clipboard copy, and program-under-test version/dirty-git indicators
    • 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.
  • Three run modes — Restart (rerun all tests), Resume (skip already-passed tests and only re-run failed or unrun tests), and Check (resume if the program under test has not changed, otherwise restart).
  • 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:

  1. When Prioritize Never-Run Tests is enabled in the Configuration tab, tests with no record in the database (across any program-under-test version) are promoted to the front of the queue, giving developers adding new tests immediate feedback. This takes precedence over failed-first and coverage-efficiency ordering.
  2. Tests that failed in the prior run are re-run first, so developers get faster feedback on tests they are likely fixing.
  3. 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.
  4. singleton tests are run last to maximize parallel throughput before exclusive execution begins.

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

pytest_fly-0.3.37.tar.gz (3.2 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_fly-0.3.37-py3-none-any.whl (120.6 kB view details)

Uploaded Python 3

File details

Details for the file pytest_fly-0.3.37.tar.gz.

File metadata

  • Download URL: pytest_fly-0.3.37.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

Hashes for pytest_fly-0.3.37.tar.gz
Algorithm Hash digest
SHA256 8555e991c14706246b32aaf4b748485709d90ccb625fbf53aa19a293b52b7121
MD5 1704ed2bf453e47a1fe43a3b871d6a6f
BLAKE2b-256 ea930b50dbdf832d65fc5069fa51f4356326eb57f7c709c2ea1a1c0d369a2257

See more details on using hashes here.

File details

Details for the file pytest_fly-0.3.37-py3-none-any.whl.

File metadata

  • Download URL: pytest_fly-0.3.37-py3-none-any.whl
  • Upload date:
  • Size: 120.6 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

Hashes for pytest_fly-0.3.37-py3-none-any.whl
Algorithm Hash digest
SHA256 95d492d4d18c8ade06e7037be64fd002ad4a05a9630cf51581c062d9e393e969
MD5 a08fee0117561ff5ac0c569cdf5f0647
BLAKE2b-256 fc5c752597a95f2ae3bd30082828449b11547f584b849aa9ec5005ac5b4751e9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page