File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 1
- project = abjadext
2
- formatPaths = ${project}/ tests/ *.py
1
+ .PHONY : build
3
2
4
3
black-check :
5
4
black --check --diff --target-version=py38 .
18
17
rm -Rif .tox/
19
18
rm -Rif build/
20
19
rm -Rif dist/
21
- rm -Rif htmlcov/
22
20
rm -Rif prof/
23
21
24
22
flake_ignore = --ignore=E203,E266,E501,W503
@@ -37,7 +35,7 @@ isort-check:
37
35
--thirdparty=uqbar \
38
36
--trailing-comma \
39
37
--use-parentheses \
40
- ${formatPaths}
38
+ abjadext/ tests/ * .py
41
39
42
40
isort-reformat :
43
41
isort \
@@ -48,22 +46,21 @@ isort-reformat:
48
46
--thirdparty=uqbar \
49
47
--trailing-comma \
50
48
--use-parentheses \
51
- ${formatPaths}
49
+ abjadext/ tests/ * .py
52
50
53
51
jupyter-test :
54
52
jupyter nbconvert --to=html --ExecutePreprocessor.enabled=True tests/test.ipynb
55
53
56
54
mypy :
57
- mypy ${project} /
55
+ mypy .
58
56
59
57
reformat :
60
58
black-reformat
61
59
isort-reformat
62
60
63
- release : docs clean build
61
+ release : clean build
64
62
pip install -U twine
65
63
twine upload dist/* .tar.gz
66
- make gh-pages
67
64
68
65
check :
69
66
make black-check
You can’t perform that action at this time.
0 commit comments