Skip to content

Commit

Permalink
Update integration data for 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Sep 15, 2024
1 parent e715db7 commit 5acc77a
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 2 deletions.
12 changes: 12 additions & 0 deletions test/data/highlight-312.right
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
(gcd.py:1): <module>
-> 1 #!/usr/bin/env python3
Set basename is on.
Set event is on.
Set stopping is off.
output set to not use terminal escape sequences
output set to not use terminal escape sequences
output set to not use terminal escape sequences
output set to not use terminal escape sequences
output set for terminal with escape sequences for a dark background
output set for terminal with escape sequences for a light background
trepan3k: That's all, folks...
22 changes: 22 additions & 0 deletions test/data/step-312.right
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
(gcd.py:1): <module>
-> 1 #!/usr/bin/env python3
Set basename is on.
Set event is on.
Set stopping is off.
Set confirmation is off.
line - gcd.py:2
(gcd.py:2): <module>
-- 2 """Greatest Common Divisor
2 -> """Greatest Common Divisor
Set stopping is on.
line - gcd.py:11
(gcd.py:11): <module>
-- 11 import sys
11 -> import sys
Set stopping is off.
line - gcd.py:13
line - gcd.py:26
(gcd.py:26): <module>
-- 26 def gcd(a,b):
26 -> def gcd(a,b):
trepan3k: That's all, folks...
4 changes: 3 additions & 1 deletion test/integration/test_highlight.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

def test_highlight():
"""Test set/show highlight"""
if PYTHON_VERSION_TRIPLE >= (3, 8):
if PYTHON_VERSION_TRIPLE >= (3, 12):
right_template = "%s-312.right"
elif PYTHON_VERSION_TRIPLE >= (3, 8):
right_template = "%s-38.right"
else:
right_template = None
Expand Down
4 changes: 3 additions & 1 deletion test/integration/test_step.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

def test_step():
"""Test stepping, set skip, set trace"""
if PYTHON_VERSION_TRIPLE >= (3, 8):
if PYTHON_VERSION_TRIPLE >= (3, 12):
right_template = "%s-312.right"
elif PYTHON_VERSION_TRIPLE >= (3, 8):
right_template = "%s-38.right"
else:
right_template = None
Expand Down

0 comments on commit 5acc77a

Please sign in to comment.