test_ok2/scripts/check-rst.py

21 lines
341 B
Python

from __future__ import print_function
import subprocess
import glob
import sys
sys.exit(
subprocess.call(
[
"rst-lint",
"--encoding",
"utf-8",
"CHANGELOG.rst",
"HOWTORELEASE.rst",
"README.rst",
]
+ glob.glob("changelog/[0-9]*.*")
)
)