Skip to content

Commit c0028fc

Browse files
committed
Makefile updates
1 parent 708107f commit c0028fc

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Makefile

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
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

512
version 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-
1216
install 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+
1522
build 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.*

0 commit comments

Comments
 (0)