-
Notifications
You must be signed in to change notification settings - Fork 55
/
Makefile
61 lines (49 loc) · 1.29 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
.PHONY: clean
clean:
find . -name '*.pyo' -delete
find . -name '*.pyc' -delete
find . -name __pycache__ -delete
find . -name '*~' -delete
find . -name '.coverage.*' -delete
.PHONY: test
test:
python -m pytest -s -vv gridstatus/ -m "not slow" -n auto --reruns 5 --reruns-delay 3
.PHONY: test-slow
test-slow:
python -m pytest -s -vv gridstatus/ -m "slow" -n auto
.PHONY: installdeps-dev
installdeps-dev:
python -m pip install ".[dev]"
pre-commit install
.PHONY: installdeps-test
installdeps-test:
python -m pip install ".[test]"
.PHONY: installdeps-docs
installdeps-docs:
python -m pip install ".[docs]"
.PHONY: lint
lint:
ruff gridstatus/
black gridstatus/ --check
.PHONY: lint-fix
lint-fix:
ruff gridstatus/ --fix
black gridstatus/
.PHONY: upgradepip
upgradepip:
python -m pip install --upgrade pip
.PHONY: upgradebuild
upgradebuild:
python -m pip install --upgrade build
.PHONY: upgradesetuptools
upgradesetuptools:
python -m pip install --upgrade setuptools
.PHONY: package
package: upgradepip upgradebuild upgradesetuptools
python -m build
$(eval PACKAGE=$(shell python -c 'import setuptools; setuptools.setup()' --version))
tar -zxvf "dist/gridstatus-${PACKAGE}.tar.gz"
mv "gridstatus-${PACKAGE}" unpacked
.PHONY: docs
docs: clean
make -C docs/ -e "SPHINXOPTS=-j auto" clean html