File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ .PHONY : clean setup format lint build tests tests-manual tests-slow tests-all docs
2+
3+ clean :
4+ find . -name ' *.pyc' -exec rm -f {} +
5+ find . -name ' *.pyo' -exec rm -f {} +
6+ find . -name ' *~' -exec rm -f {} +
7+ find . -name ' __pycache__' -exec rm -fr {} +
8+ rm -rf build/
9+ rm -rf dist/
10+ rm -rf .cache/
11+ rm -f .coverage
12+ rm -rf .pytest_cache/
13+ rm -rf docs/_build/*
14+
15+ setup :
16+ -poetry env remove
17+ poetry install
18+
19+ format :
20+ poetry run ruff format .
21+
22+ lint :
23+ poetry run check .
24+
25+ build :
26+ poetry build
27+
28+ tests :
29+ poetry run pytest -s -m " not slow and not manual"
30+
31+ tests-manual :
32+ poetry run pytest -s -m " manual"
33+
34+ tests-slow :
35+ poetry run pytest -s -m " slow and not manual"
36+
37+ tests-all :
38+ poetry run pytest
39+
40+ docs :
41+ $(MAKE ) -C docs html
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments