Skip to content

Commit f5214ca

Browse files
committed
changes to make file
1 parent d37de68 commit f5214ca

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

makefile

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,18 @@
33
all: clean dev lint fmt test
44

55
clean:
6-
rm -fr .venv clean htmlcov .mypy_cache .pytest_cache .ruff_cache .coverage coverage.xml
6+
rm -fr clean htmlcov .mypy_cache .pytest_cache .ruff_cache .coverage coverage.xml
77
rm -fr **/*.pyc
88

9-
.venv/bin/python:
10-
pip install hatch
11-
hatch env create
12-
13-
dev: .venv/bin/python
9+
dev:
10+
@which hatch > /dev/null || pip install hatch
1411
@hatch run which python
1512

1613
lint:
17-
hatch run verify
14+
hatch run test-pydantic.2.8.2:verify
1815

1916
fmt:
20-
hatch run fmt
17+
hatch run test-pydantic.2.8.2:fmt
2118

2219
test:
2320
hatch run test-pydantic:test

0 commit comments

Comments
 (0)