sprint/SprintLib/testers/GoTester.py
2021-11-06 13:10:52 +03:00

9 lines
189 B
Python

from SprintLib.testers.BaseTester import BaseTester
class GoTester(BaseTester):
working_directory = "../app"
def build_command(self):
return "go build -o executable.exe"