-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
50 lines (40 loc) · 1.06 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
.PHONY: clean
clean:
find . -name '*.pyo' -delete
find . -name '*.pyc' -delete
find . -name __pycache__ -delete
find . -name '*~' -delete
find . -name '.coverage.*' -delete
PYTEST_CMD := poetry run pytest -s -vv gridstatusio/
NOT_SLOW := -m "not slow"
.PHONY: test
test:
$(PYTEST_CMD) $(NOT_SLOW) --reruns 5 --reruns-delay 3
# Running tests in parallel will generally result in rate limiting from the API
.PHONY: test-parallel
test-parallel:
$(PYTEST_CMD) $(NOT_SLOW) -n auto
.PHONY: test-slow
test-slow:
$(PYTEST_CMD) -m slow
.PHONY: installdeps-dev
installdeps-dev:
poetry install --all-extras
poetry run pre-commit install
.PHONY: installdeps-test
installdeps-test:
poetry install --all-extras
.PHONY: installdeps-docs
installdeps-docs:
poetry install --all-extras
.PHONY: lint
lint:
poetry run ruff check gridstatusio/
poetry run ruff format gridstatusio/ --check
.PHONY: lint-fix
lint-fix:
poetry run ruff check gridstatusio/ --fix
poetry run ruff format gridstatusio/
.PHONY: package
package: upgradepip upgradebuild upgradesetuptools
poetry build