We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d37de68 commit f5214caCopy full SHA for f5214ca
makefile
@@ -3,21 +3,18 @@
3
all: clean dev lint fmt test
4
5
clean:
6
- rm -fr .venv clean htmlcov .mypy_cache .pytest_cache .ruff_cache .coverage coverage.xml
+ rm -fr clean htmlcov .mypy_cache .pytest_cache .ruff_cache .coverage coverage.xml
7
rm -fr **/*.pyc
8
9
-.venv/bin/python:
10
- pip install hatch
11
- hatch env create
12
-
13
-dev: .venv/bin/python
+dev:
+ @which hatch > /dev/null || pip install hatch
14
@hatch run which python
15
16
lint:
17
- hatch run verify
+ hatch run test-pydantic.2.8.2:verify
18
19
fmt:
20
- hatch run fmt
+ hatch run test-pydantic.2.8.2:fmt
21
22
test:
23
hatch run test-pydantic:test
0 commit comments