A Pytest plugin that allows tests to be marked as `@pytest.mark.explicit`, causing them to be skipped by default. Tests can be explicitly run by passing the `--explicit` flag. Version 1.0.1 is the latest and stable, with no new releases since 2021.
pip install pytest-explicitVerified import paths — ran on the pinned version, not inferred.
Mark a test with @pytest.mark.explicit to skip it by default. Use --explicit flag to include it.
Use exactly `@pytest.mark.explicit` (spelling: e-x-p-l-i-c-i-t).
Run `pytest --explicit tests/` instead of `pytest tests/ --explicit`.
Test your pytest version; if incompatible, consider using pytest's built-in `--markers` or `-k` expressions.
Run `pip install pytest-explicit` and verify with `pip list | grep pytest-explicit`.
Add `import pytest` at the top of your test file.
Upgrade pytest-explicit: `pip install --upgrade pytest-explicit`; if persists, reinstall with `pip install --force-reinstall pytest-explicit`.