summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Treinish <mtreinish@kortar.org>2021-06-15 13:21:19 -0400
committerGitHub <noreply@github.com>2021-06-15 13:21:19 -0400
commit1c82fee86b1778335680416b9a0041a579d02714 (patch)
tree4e57635f17e3ef2702b45929b10a1944582a3955
parent1181894ae4d7da137a8d109a8360850000272c55 (diff)
parentc3e27837af6e8a22c88430fcb9ad941ac76cb4d7 (diff)
downloadsubunit-git-1c82fee86b1778335680416b9a0041a579d02714.tar.gz
Merge pull request #46 from stephenfin/python310
python: Mark rawstrings as such
-rw-r--r--python/subunit/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/subunit/__init__.py b/python/subunit/__init__.py
index 17a970a..becbdac 100644
--- a/python/subunit/__init__.py
+++ b/python/subunit/__init__.py
@@ -1033,7 +1033,7 @@ def TAP2SubUnit(tap, output_stream):
file_name=file_name, runnable=False)
for line in tap:
if state == BEFORE_PLAN:
- match = re.match("(\d+)\.\.(\d+)\s*(?:\#\s+(.*))?\n", line)
+ match = re.match(r"(\d+)\.\.(\d+)\s*(?:\#\s+(.*))?\n", line)
if match:
state = AFTER_PLAN
_, plan_stop, comment = match.groups()
@@ -1046,7 +1046,7 @@ def TAP2SubUnit(tap, output_stream):
file_name='tap comment')
continue
# not a plan line, or have seen one before
- match = re.match("(ok|not ok)(?:\s+(\d+)?)?(?:\s+([^#]*[^#\s]+)\s*)?(?:\s+#\s+(TODO|SKIP|skip|todo)(?:\s+(.*))?)?\n", line)
+ match = re.match(r"(ok|not ok)(?:\s+(\d+)?)?(?:\s+([^#]*[^#\s]+)\s*)?(?:\s+#\s+(TODO|SKIP|skip|todo)(?:\s+(.*))?)?\n", line)
if match:
# new test, emit current one.
_emit_test()
@@ -1074,7 +1074,7 @@ def TAP2SubUnit(tap, output_stream):
test_name = "test %d%s" % (plan_start, description)
plan_start += 1
continue
- match = re.match("Bail out\!(?:\s*(.*))?\n", line)
+ match = re.match(r"Bail out\!(?:\s*(.*))?\n", line)
if match:
reason, = match.groups()
if reason is None:
@@ -1086,7 +1086,7 @@ def TAP2SubUnit(tap, output_stream):
result = "fail"
state = SKIP_STREAM
continue
- match = re.match("\#.*\n", line)
+ match = re.match(r"\#.*\n", line)
if match:
log.append(line[:-1])
continue