diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 16ae804..d2b6bb5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,11 +36,11 @@ jobs: cd tests make ls build - # - name: test single rom - # # shell: bash - # run: | - # cd tests - # python test.py + - name: test single rom + # shell: bash + run: | + cd tests + python test.py - name: pytest # shell: bash run: | diff --git a/tests/bgb_get_snapshot.py b/tests/bgb_get_snapshot.py index a89ea11..e23be94 100644 --- a/tests/bgb_get_snapshot.py +++ b/tests/bgb_get_snapshot.py @@ -49,10 +49,11 @@ def make_and_run(rom_relative): cmd = [ *bgb_exe, + "-set \"DebugSrcBrk=1\"", "-autoexit" "-hf", "-stateonexit", - "-screenonexit", screenshot_path.absolute().as_posix(), + # "-screenonexit", screenshot_path.absolute().as_posix(), rom_relative, ]