Skip to main content

A pytest plugin for running tests against Minecraft releases

Project description

pytest-minecraft

Build Status PyPI PyPI - Python Version

A pytest plugin for running tests against Minecraft releases.

The plugin automatically downloads the latest version of the Minecraft client into the pytest cache. The provided fixtures can also extract the vanilla resource pack and data pack on demand.

Installation

The package can be installed with pip.

$ pip install pytest-minecraft

Usage

Downloading the Minecraft client takes a few seconds so the tests that use the fixtures provided by the plugin will be skipped unless explicitly enabled with a command-line flag. The --minecraft-latest flag will enable the tests and run them against the latest stable release.

$ pytest --minecraft-latest

You can also use the --minecraft-snapshot flag to test against the latest snapshot. Both flags can be specified at the same time to run the tests against both stable and snapshot releases.

$ pytest --minecraft-latest --minecraft-snapshot

Fixtures

  • The minecraft_client_jar fixture returns the path to the downloaded Minecraft client as a pathlib.Path instance.

    def test_with_client(minecraft_client_jar):
        assert minecraft_client_jar.name == "client.jar"
    
        with ZipFile(minecraft_client_jar) as client:
            assert len(client.namelist()) > 10_000
    
  • The minecraft_resource_pack fixture returns the path to the extracted vanilla resource pack as a pathlib.Path instance.

    def test_with_resource_pack(minecraft_resource_pack):
        assert minecraft_resource_pack.name == "resource_pack"
        assert (minecraft_resource_pack / "assets" / "minecraft" / "textures").is_dir()
    
  • The minecraft_data_pack fixture returns the path to the extracted vanilla data pack as a pathlib.Path instance.

    def test_with_data_pack(minecraft_data_pack):
        assert minecraft_data_pack.name == "data_pack"
        assert (minecraft_data_pack / "data" / "minecraft" / "loot_tables").is_dir()
    

Contributing

Contributions are welcome. This project uses poetry.

$ poetry install

You can run the tests with poetry run pytest.

$ poetry run pytest

The code follows the black code style.

$ poetry run black .

License - MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest-minecraft-0.2.0.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

pytest_minecraft-0.2.0-py3-none-any.whl (4.2 kB view details)

Uploaded Python 3

File details

Details for the file pytest-minecraft-0.2.0.tar.gz.

File metadata

  • Download URL: pytest-minecraft-0.2.0.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.11 CPython/3.8.10 Linux/4.19.128-microsoft-standard

File hashes

Hashes for pytest-minecraft-0.2.0.tar.gz
Algorithm Hash digest
SHA256 5d488eb71f686000aafd8674452090e7f619c2cb5073e1237b3f98edbdbcbed1
MD5 965132b0b82c54366d5e273fbed54789
BLAKE2b-256 271660b26976b0f58bca0e7397dcde9a3c883015a3d4f4155de158aa24c8c4ab

See more details on using hashes here.

File details

Details for the file pytest_minecraft-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: pytest_minecraft-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 4.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.11 CPython/3.8.10 Linux/4.19.128-microsoft-standard

File hashes

Hashes for pytest_minecraft-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ad8533453a11f260bfd7087fb467853ee0cfc2f80644a133bae2819828aa7742
MD5 cc5a14644c64112b3eedb796af0e6ef4
BLAKE2b-256 c52a9aad929b0e5f28857bd4fd056e61b75bbc286d5c243876b7cb838420fcaa

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page