Skip to content

Commit 864920d

Browse files
committed
pwnshop: disable fancy markup for testcase output (it broke rich)
1 parent 5984004 commit 864920d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • tools/pwnshop/src/pwnshop/commands

tools/pwnshop/src/pwnshop/commands/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def test_challenge(challenge_path):
115115
failed_tests += 1
116116
failed.setdefault(challenge, []).append(test_path)
117117
if output:
118-
console.print(output.rstrip("\n"))
118+
console.print(output.rstrip("\n"), markup=False)
119119
if challenge in failed:
120120
failed_count += 1
121121
else:

0 commit comments

Comments
 (0)