We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be9fbbf commit 7eefa06Copy full SHA for 7eefa06
Makefile
@@ -1,18 +1,18 @@
1
-.PHONY: all version test dist clean
+.PHONY: all version v test t dist d clean c
2
3
all: test version
4
5
-version:
+version v:
6
git describe --tags
7
python -m setuptools_scm
8
9
-test:
+test t:
10
pytest --cov=src/cedarscript_ast_parser tests/ --cov-report term-missing
11
12
-dist: test
+dist d: test
13
scripts/check-version.sh
14
rm -rf dist/cedarscript_*.whl dist/cedarscript_*.tar.gz
15
python -m build && twine upload dist/*
16
17
-clean:
+clean c:
18
rm -rfv out dist/cedarscript_*.whl dist/cedarscript_*.tar.gz build/bdist.* build/lib/cedarscript*
0 commit comments