Skip to content

Commit

Permalink
removed unicode output from test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
evanbenadler committed Oct 9, 2020
1 parent b340fc3 commit 097b250
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def main():
for path, _, files in os.walk("test"):
lglfiles = [x for x in files if x.endswith(".lgl")]
if len(lglfiles) > 0:
print("πŸƒβ€ Running tests in " + path + ":")
print("Running tests in " + path + ":")
for filename in lglfiles:
filename = path + "/" + filename
basename = filename[:-4] # Remove the extension
Expand Down Expand Up @@ -191,16 +191,16 @@ def main():
# os.remove(tempname)
if failed:
any_fails = True
print("\t❌ " + basename + " " +
random.choice(fail_symbols))
print(basename + " failed")
except IOError:
any_fails = True
print("\t❌ " + expectname + " not found " +
print("\t" + expectname + " not found " +
random.choice(fail_symbols))
if not any_fails:
print("No πŸ‘ Failures πŸ‘")
print()
print("No Failures")
for _ in range(SUCCESS_COUNT):
print(random.choice(success_symbols) + " "),
pass
print("") # newline
elif args.b: # for CircleCI builds
sys.exit(420)
Expand Down

0 comments on commit 097b250

Please sign in to comment.