Skip to content

Commit

Permalink
Merge pull request #54 from jackbrown1993/fix_pytest
Browse files Browse the repository at this point in the history
Add XP to verbose pytest output
  • Loading branch information
Coffee-fueled-deadlines committed Nov 12, 2023
2 parents 31638fd + 3c4ffc4 commit 0763ef6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OSRSBytes/tests/hiscores_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def test(verbose = True):
except:
failed_tests.append(skill)
if (verbose):
print("Skill: {}\n\tRank: {}\n\tLevel: {}"
.format(skill, boss_user.skill(skill,"rank"), boss_user.skill(skill,"level")))
print("Skill: {}\n\tRank: {}\n\tLevel: {}\n\tXP: {}"
.format(skill, boss_user.skill(skill,"rank"), boss_user.skill(skill,"level"),boss_user.skill(skill,"experience")))

for activity in pvp_user.getPVPGenerator():
try:
Expand Down

0 comments on commit 0763ef6

Please sign in to comment.