diff --git a/tests/test_version.py b/tests/test_version.py index 884c0c7..cb5b899 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -3,6 +3,9 @@ def test_secsie_semver_syntax(): + """ + Ensure that the current version of secsie is appropriate according to the semantic versioning ideology. + """ VERSION_EX = re.compile( r"^(?P0|[1-9]\d*)\.(?P0|[1-9]\d*)\.(?P0|[1-9]\d*)(?:-(?P(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+(?P[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$" )