{"id":13772124,"url":"https://github.com/bp72/pytest-skipuntil","last_synced_at":"2026-01-12T12:49:28.182Z","repository":{"id":206848909,"uuid":"717825051","full_name":"bp72/pytest-skipuntil","owner":"bp72","description":"A simple pytest plugin to skip flapping test with deadline","archived":false,"fork":false,"pushed_at":"2023-11-25T21:36:23.000Z","size":29,"stargazers_count":27,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-19T15:28:13.705Z","etag":null,"topics":["pytest","pytest-plugin","python","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bp72.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-11-12T18:04:37.000Z","updated_at":"2024-02-21T14:24:04.000Z","dependencies_parsed_at":"2024-01-14T17:04:52.679Z","dependency_job_id":"40f91a89-c464-441e-8f0b-cf5c833e6c7e","html_url":"https://github.com/bp72/pytest-skipuntil","commit_stats":{"total_commits":11,"total_committers":1,"mean_commits":11.0,"dds":0.0,"last_synced_commit":"c23670ea34d0a594ede2eb9d5a495d85abdfce93"},"previous_names":["bp72/pytest-skipuntil"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/bp72/pytest-skipuntil","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bp72%2Fpytest-skipuntil","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bp72%2Fpytest-skipuntil/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bp72%2Fpytest-skipuntil/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bp72%2Fpytest-skipuntil/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bp72","download_url":"https://codeload.github.com/bp72/pytest-skipuntil/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bp72%2Fpytest-skipuntil/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28338983,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T12:22:26.515Z","status":"ssl_error","status_checked_at":"2026-01-12T12:22:10.856Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pytest","pytest-plugin","python","python3"],"created_at":"2024-08-03T17:01:00.276Z","updated_at":"2026-01-12T12:49:28.168Z","avatar_url":"https://github.com/bp72.png","language":"Python","funding_links":[],"categories":["Plugins"],"sub_categories":[],"readme":"================\npytest-skipuntil\n================\n\n.. image:: https://img.shields.io/pypi/v/pytest-skipuntil.svg\n    :target: https://pypi.org/project/pytest-skipuntil\n    :alt: PyPI version\n\n.. image:: https://img.shields.io/pypi/pyversions/pytest-skipuntil.svg\n    :target: https://pypi.org/project/pytest-skipuntil\n    :alt: Python versions\n\n.. image:: https://ci.appveyor.com/api/projects/status/github/bp72/pytest-skipuntil?branch=master\n    :target: https://ci.appveyor.com/project/bp72/pytest-skipuntil/branch/master\n    :alt: See Build Status on AppVeyor\n\nA simple pytest plugin to skip the tests with deadline in a simple way\n\n----\n\nFeatures\n--------\n\n* Use this marker to specify the deadline for the skip: a convenient decorator to prevent skipping tests and never going back to fix them. When the deadline is behind, the test will start failing again.\n\n\nRequirements\n------------\n\n* pytest\n* python\u003e=3.8\n\n\nInstallation\n------------\n\nYou can install \"pytest-skipuntil\" via `pip`_ from `PyPI`_::\n\n    $ pip install pytest-skipuntil\n\nUsage\n-----\n\n* Use it as a decorator for the test that you want to skip::\n\n\n    @pytest.mark.skip_until(\n        deadline=datetime(2023, 12, 11),\n        msg='This test requires a fix, but I can't do it right now :('\n    )\n    def test_something():\n        ...\n\nThe test will be skipped until 11/12/2023, but it will start failing again after this date, so you'll be\nreminded to make a fix.\n\n\nContributing\n------------\nContributions are very welcome. Tests can be run with `tox`_, please ensure\nthe coverage at least stays the same before you submit a pull request.\n\nLicense\n-------\n\nDistributed under the terms of the `MIT`_ license, \"pytest-skipuntil\" is free and open source software\n\n\nIssues\n------\n\nIf you encounter any problems, please `file an issue`_ along with a detailed description.\n\n.. _`Cookiecutter`: https://github.com/audreyr/cookiecutter\n.. _`@hackebrot`: https://github.com/hackebrot\n.. _`MIT`: http://opensource.org/licenses/MIT\n.. _`BSD-3`: http://opensource.org/licenses/BSD-3-Clause\n.. _`GNU GPL v3.0`: http://www.gnu.org/licenses/gpl-3.0.txt\n.. _`Apache Software License 2.0`: http://www.apache.org/licenses/LICENSE-2.0\n.. _`cookiecutter-pytest-plugin`: https://github.com/pytest-dev/cookiecutter-pytest-plugin\n.. _`file an issue`: https://github.com/bp72/pytest-skipuntil/issues\n.. _`pytest`: https://github.com/pytest-dev/pytest\n.. _`tox`: https://tox.readthedocs.io/en/latest/\n.. _`pip`: https://pypi.org/project/pip/\n.. _`PyPI`: https://pypi.org/project\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbp72%2Fpytest-skipuntil","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbp72%2Fpytest-skipuntil","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbp72%2Fpytest-skipuntil/lists"}