From d3884bd7077311ef030ba38e30b390c6548fe6a4 Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Thu, 3 Aug 2023 22:52:17 -0700 Subject: [PATCH] run ./dfhack instead of ./dwarfort on linux so we can see output since we set the tty params --- ci/run-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/run-tests.py b/ci/run-tests.py index 9785e607c..a55bf3051 100755 --- a/ci/run-tests.py +++ b/ci/run-tests.py @@ -33,7 +33,7 @@ if args.test_dir is not None: MAX_TRIES = 5 -dfhack = 'Dwarf Fortress.exe' if sys.platform == 'win32' else './dwarfort' +dfhack = 'Dwarf Fortress.exe' if sys.platform == 'win32' else './dfhack' test_status_file = 'test_status.json' class TestStatus(enum.Enum):