File tree 1 file changed +12
-12
lines changed
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
2
2
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.*
4
11
5
12
version v :
6
13
git describe --tags || :
7
14
python -m setuptools_scm
8
15
9
- test t :
10
- pytest --cov=src/cedarscript_editor --cov=src/text_manipulation tests/ --cov-report term-missing
11
-
12
16
install i :
13
17
pip install --upgrade --force-reinstall -e .
14
18
19
+ test t :
20
+ pytest --cov=src/cedarscript_editor --cov=src/text_manipulation tests/ --cov-report term-missing
21
+
15
22
build b :
16
23
# SETUPTOOLS_SCM_PRETEND_VERSION=0.0.1
17
24
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