pytest
def test_add():
assert 1 + 1 == 2
pytest
ruff / black / mypy
ruff check .
black .
mypy .
pyproject.toml
[project]
name = "myapp"
requires-python = ">=3.12"
def test_add():
assert 1 + 1 == 2
pytest
ruff check .
black .
mypy .
[project]
name = "myapp"
requires-python = ">=3.12"
Loading comments...