Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
tstirrat committed Jul 26, 2024
1 parent 794d5d6 commit 86e54f3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,15 @@ on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]

steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: "3.12"
# - uses: schmiddim/action-wget-unzip@v2
# with:
# url: "https://github.com/gbdk-2020/gbdk-2020/releases/download/4.3.0/gbdk-linux64.tar.gz"
Expand Down Expand Up @@ -59,7 +56,11 @@ jobs:
# pip install ruff
# ruff check --format=github --target-version=py310 .
# continue-on-error: true
- name: Test with pytest
- name: Run wine
run: |
cd tests
pytest -v -s
WINEDEBUG=+all /usr/bin/env wine ../bgb/bgb64.exe -set \"DebugSrcBrk=1\" -hf -stateonexit -screenonexit build/wav_test_load_and_play.bmp build/wav_test_load_and_play.gb
# - name: Test with pytest
# run: |
# cd tests
# pytest -v -s
1 change: 0 additions & 1 deletion tests/bgb_get_snapshot.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def make_and_run(rom_relative):
rom_relative,
],
cwd=base_dir,
env="WINEDEBUG=+all",
# stdout=subprocess.DEVNULL,
# stderr=subprocess.DEVNULL,
)
Expand Down

0 comments on commit 86e54f3

Please sign in to comment.