{"library":"pytest-explicit","title":"pytest-explicit","description":"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.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install pytest-explicit"],"cli":null},"imports":["import pytest","pytest --explicit"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"# test_example.py\nimport pytest\n\n@pytest.mark.explicit\ndef test_slow():\n    assert True\n\ndef test_fast():\n    assert True\n\n# Run with: pytest --explicit  # runs both\n# Run without: pytest          # skips test_slow\n","lang":"python","description":"Mark a test with @pytest.mark.explicit to skip it by default. Use --explicit flag to include it.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}