Skip to main content

A pytest plugin to start test execution from a specific test case

Project description

pytest-case-start-from

A pytest plugin that allows you to start test execution from a specific test case, skipping all tests before it.

Features

  • ✅ Start test execution from any test case using --start-from or -sf option
  • ✅ Pattern matching similar to pytest's -k option
  • ✅ Support for substring matching
  • ✅ Support for logical operators: and, or, not
  • ✅ Works with test functions, test methods, and test classes
  • ✅ Easy to install and use

Installation

Development mode (for local testing)

pip install -e .

Regular installation

pip install .

Quick Start

# skip all tests before test_third
pytest --start-from test_third

# pattern matching with substring
pytest --start-from "third"

# match test in a class
pytest --start-from "TestClass::test_method"

Usage Examples

Basic Usage

# start from a specific test
pytest --start-from test_fourth test_example.py

# use with verbose output
pytest --start-from test_second -v

# combine with other pytest options
pytest --start-from test_third -v -s --tb=short

Pattern Matching

# substring match
pytest --start-from "class_second"

# logical operators
pytest --start-from "parameters and a"
pytest --start-from "first or second"
pytest --start-from "test not class"

How It Works

  1. The plugin hooks into pytest's test execution flow
  2. Before each test runs, it checks if the test name matches the specified pattern
  3. All tests before the first match are marked as SKIPPED
  4. Once the first matching test is found, all subsequent tests run normally

Documentation

For detailed usage instructions, see USAGE.md

Use Cases

  • Debugging: Skip passing tests and start from the failing test
  • Incremental Testing: Continue from where tests were interrupted
  • Development: Focus on specific tests during feature development
  • CI/CD Optimization: Resume test execution from a specific point

Requirements

  • Python >= 3.7
  • pytest >= 6.0.0

License

MIT License - see LICENSE file for details

Contributing

Contributions are welcome! Please feel free to submit issues and pull requests.

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_case_start_from-1.0.0.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

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

pytest_case_start_from-1.0.0-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file pytest_case_start_from-1.0.0.tar.gz.

File metadata

  • Download URL: pytest_case_start_from-1.0.0.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pytest_case_start_from-1.0.0.tar.gz
Algorithm Hash digest
SHA256 a300a0098d550365109d6ed2af848161601d192d39407c48c7ee1eca83b2990b
MD5 0ab15979812369b6a943da428c4e899e
BLAKE2b-256 827cf25b96fd702de080362f995059107f2166040039fdf0afd7248f00e68af1

See more details on using hashes here.

File details

Details for the file pytest_case_start_from-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_case_start_from-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fefccf53f8e668275a2475152c73220a2c86c62da5b623f6bd640825d0bbfa0a
MD5 8e1e5d80d81a0bef38eeabdddd4be789
BLAKE2b-256 054c005c826ccfae0e70aa3fc94dfb73e9e3470a693d5a0fef29c5f57f177951

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