File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 1- .PHONY : all version v test t install i build b dist d clean c
1+ .PHONY : all dist d clean c version v install i test t build b
22
3- all : clean test install build version
3+ all : clean install test build version
4+
5+ dist d : all
6+ scripts/check-version.sh
7+ twine upload dist/*
8+
9+ clean c :
10+ rm -rfv out dist build/bdist.*
411
512version v :
613 git describe --tags || :
714 python -m setuptools_scm
815
9- test t :
10- pytest --cov=src/cedarscript_editor --cov=src/text_manipulation tests/ --cov-report term-missing
11-
1216install i :
1317 pip install --upgrade --force-reinstall -e .
1418
19+ test t :
20+ pytest --cov=src/cedarscript_editor --cov=src/text_manipulation tests/ --cov-report term-missing
21+
1522build b :
1623 # SETUPTOOLS_SCM_PRETEND_VERSION=0.0.1
1724 python -m build
18-
19- dist d : clean test build
20- scripts/check-version.sh
21- twine upload dist/*
22-
23- clean c :
24- rm -rfv out dist build/bdist.*
You can’t perform that action at this time.
0 commit comments