Skip to content

Instantly share code, notes, and snippets.

@d-v-b
Created April 8, 2025 16:16
Show Gist options
  • Save d-v-b/84aa5c5cb5d23bbbfb366a26ee92490f to your computer and use it in GitHub Desktop.
Save d-v-b/84aa5c5cb5d23bbbfb366a26ee92490f to your computer and use it in GitHub Desktop.
pep 723 + pytest demo
# /// script
# requires-python = ">=3.11"
# dependencies = [
# "pytest",
# ]
# ///
import pytest
@pytest.mark.parametrize('value', [0, 1, 2])
def test_kvstore_list(value):
assert 1 / value == 1
pytest.main([__file__])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment