forked from RobertCraigie/prisma-client-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
81 lines (69 loc) · 1.56 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.PHONY: bootstrap
bootstrap:
pip install -U wheel
pip install -U -e .
pip install -U -r pipelines/requirements/all.txt
python -m prisma_cleanup
prisma db push --schema=tests/data/schema.prisma
cp tests/data/dev.db dev.db
.PHONY: database
database:
prisma db push --schema=tests/data/schema.prisma
cp tests/data/dev.db dev.db
.PHONY: test
test:
nox -s test $(ARGS)
.PHONY: format
format:
blue .
for schema in `find . -name '*.schema.prisma'` ; do \
prisma format --schema=$$schema ; \
done
.PHONY: lint
lint:
nox -s lint
.PHONY: mypy
mypy:
nox -s mypy
.PHONY: pyright
pyright:
prisma generate --schema=tests/data/schema.prisma
pyright
.PHONY: typesafety
typesafety:
nox -s typesafety-pyright typesafety-mypy
.PHONY: docs
docs:
python scripts/docs.py
mkdocs build
.PHONY: start-mysql
start-mysql:
docker compose -f databases/docker-compose.yml up -d --remove-orphans mysql-8-0
.PHONY: docs-serve
docs-serve:
python scripts/docs.py
mkdocs serve
.PHONY: docker
docker:
# Note: the below will fail on linux/arm64 systems until
# we fix it in the upstream project
docker build -f tests/Dockerfile -t prisma-client-py --load .
.PHONY: clean
clean:
python -m prisma_cleanup
pip cache remove prisma
rm -rf .nox
rm -rf .cache
rm -rf `find . -name __pycache__`
rm -rf `find examples -name '.venv' `
rm -rf `find tests/integrations -name '.venv' `
rm `find databases -name *pyrightconfig.json`
rm -rf .tests_cache
rm -rf .mypy_cache
rm -rf htmlcov
rm -rf *.egg-info
rm -f .coverage
rm -f .coverage.*
rm -rf build
rm -rf dist
rm -f coverage.xml