Skip to content

Commit

Permalink
Clean up unused "is_pypy"
Browse files Browse the repository at this point in the history
  • Loading branch information
Baekalfen committed Nov 23, 2024
1 parent e3c6478 commit 41a8aba
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 23 deletions.
3 changes: 0 additions & 3 deletions tests/test_basics.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import hashlib
import os
import os.path
import platform
import sys
from io import BytesIO
from pathlib import Path
Expand All @@ -20,8 +19,6 @@
from pyboy.api.tile import Tile
from pyboy.utils import WindowEvent

is_pypy = platform.python_implementation() == "PyPy"


def test_log_level_none(default_rom, capsys):
pyboy = PyBoy(default_rom, window="null")
Expand Down
9 changes: 0 additions & 9 deletions tests/test_game_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,9 @@
# GitHub: https://github.com/Baekalfen/PyBoy
#

import os
import platform
import sys

import numpy as np
import pytest

from pyboy import PyBoy
from pyboy.utils import WindowEvent

py_version = platform.python_version()[:3]
is_pypy = platform.python_implementation() == "PyPy"


def test_game_wrapper_basics(default_rom):
Expand Down
11 changes: 0 additions & 11 deletions tests/test_game_wrapper_mario.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,7 @@
# GitHub: https://github.com/Baekalfen/PyBoy
#

import os
import platform
import sys

import numpy as np
import pytest

from pyboy import PyBoy
from pyboy.utils import WindowEvent

py_version = platform.python_version()[:3]
is_pypy = platform.python_implementation() == "PyPy"


def test_mario_basics(supermarioland_rom):
Expand Down

0 comments on commit 41a8aba

Please sign in to comment.