test_ok2/scripts/towncrier-draft-to-file.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
489 B
Python
Raw Normal View History

2023-12-31 21:25:13 +08:00
# mypy: disallow-untyped-defs
from subprocess import call
import sys
2023-12-31 21:25:13 +08:00
def main() -> int:
"""
2023-12-31 21:25:13 +08:00
Platform-agnostic wrapper script for towncrier.
Fixes the issue (#7251) where Windows users are unable to natively run tox -e docs to build pytest docs.
"""
2023-06-20 19:55:40 +08:00
with open(
"doc/en/_changelog_towncrier_draft.rst", "w", encoding="utf-8"
) as draft_file:
return call(("towncrier", "--draft"), stdout=draft_file)
if __name__ == "__main__":
sys.exit(main())