Created
April 8, 2025 16:16
-
-
Save d-v-b/84aa5c5cb5d23bbbfb366a26ee92490f to your computer and use it in GitHub Desktop.
pep 723 + pytest demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /// 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