Skip to content

Commit

Permalink
test.py: remove unnecessary code for windows compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuele6 authored and bagder committed Apr 19, 2023
1 parent ad79234 commit a9de6db
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@
from dataclasses import dataclass, asdict

TESTFILE = "./tests.json"
if sys.platform == "win32" or sys.platform == "cygwin":
BASECMD = "./trurl.exe" # windows
else:
BASECMD = "./trurl" # linux
BASECMD = "./trurl"

RED = "\033[91m" # used to mark unsuccessful tests
NOCOLOR = "\033[0m"
Expand Down

0 comments on commit a9de6db

Please sign in to comment.