Skip to main content

Tryke - A Python testing tool

Project description

tryke-small

Tryke

ruff PyPI license python CI docs

Getting started

For more information, see the documentation.

Write a test.

from typing import Annotated

import tryke as t


# Fixtures with `per="scope"` are cached for their scope:
# - Module-level for globally defined fixtures
# - Per `describe` block for fixtures defined within a `describe` block
@t.fixture(per="scope")
def database():
    db = {}
    yield db
    db.clear()


with t.describe("users"):
    # By default, fixtures run per-test
    # Fixtures can be composed by requesting other fixtures
    @t.fixture
    def users(database: Annotated[dict[str, dict[str, str]], t.Depends(database)]):
        database["users"] = {}
        return database["users"]

    with t.describe("get"):
        # Define display labels for tests
        # Async tests are supported
        @t.test("returns a stored user")
        async def test_get(users: Annotated[dict[str, str], t.Depends(users)]):
            users["alice"] = "alice@example.com"
            t.expect(users["alice"]).to_equal("alice@example.com")

    with t.describe("set"):

        @t.test("stores a new user")
        async def test_set(users: Annotated[dict[str, str], t.Depends(users)]):
            users["bob"] = "bob@example.com"
            t.expect(users["bob"]).to_equal("bob@example.com")

Run your tests — tryke watch for an always-on loop, tryke test --changed for just what your working tree touched, or plain:

uvx tryke test
tryke test v0.0.23

example.py:
  users
    get
      ✓ returns a stored user [0.00ms]
        ✓ expect(users["alice"]).to_equal("alice@example.com")
    set
      ✓ stores a new user [0.00ms]
        ✓ expect(users["bob"]).to_equal("bob@example.com")

 Test Files  1 passed (1)
      Tests  2 passed (2)
   Start at  08:58:39
   Duration  46.01ms (discover 6.08ms, tests 39.93ms)

  PASS

Coming from pytest?

The migration guide has a side-by-side cheat sheet and — faster — a copy-paste LLM prompt that walks an AI coding assistant through a phased, gated pytest → Tryke migration with discovery- and results-parity checks built in.

License

This repository is licensed under the MIT License.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

tryke-0.0.25-py3-none-win_amd64.whl (4.3 MB view details)

Uploaded Python 3Windows x86-64

tryke-0.0.25-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

tryke-0.0.25-py3-none-macosx_11_0_arm64.whl (4.6 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

File details

Details for the file tryke-0.0.25-py3-none-win_amd64.whl.

File metadata

  • Download URL: tryke-0.0.25-py3-none-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryke-0.0.25-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 86b5698c3a8acf06517778ba30771d549b0fe2d61a3604a42881498db92b6802
MD5 078058bf7b060916583c4889535cc989
BLAKE2b-256 1f190146b9b0ef727fe87cdc49b73b828ee26bbfd48f4d328b59414b87b46476

See more details on using hashes here.

File details

Details for the file tryke-0.0.25-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: tryke-0.0.25-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryke-0.0.25-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9186c16428ee4ce7788fda96ded93607c9ff1d46c24aca8a28c28ff57d2844ba
MD5 a8e09418a87bb0a316562985e8f2b8ef
BLAKE2b-256 7e4c80bde68811f0363ef41bd8f606e0e2e2c2cbea7cfa439351f3545262f6c7

See more details on using hashes here.

File details

Details for the file tryke-0.0.25-py3-none-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tryke-0.0.25-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tryke-0.0.25-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdf6efe4860bd3731e7910bab15b405c62fac26ff7f84d8b9b1bda01c1a629c0
MD5 7cb5aa92c009ebaeeb736e3947706900
BLAKE2b-256 d589db40bb566a9a51ac259ef66cd9221d9cafd536fcd268853b7af5d701891b

See more details on using hashes here.

Supported by

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