Skip to content

Commit 2b465b6

Browse files
authored
Simplify test command and update bump-commit steps (#78)
1 parent 8f52de2 commit 2b465b6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

justfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,13 @@ default:
77

88
# run tests
99
test:
10-
uv run pytest --cov=memobj
10+
uv run pytest
1111

1212
# does a version bump commit
1313
bump-commit type="minor": && create-tag
1414
uv version --bump {{type}}
1515
git commit -am ("bump to " + (uv version --short))
16-
git fetch --tags
17-
git tag (uv version --short)
1816
git push
19-
git push --tags
2017

2118
# creates a new tag for the current version
2219
create-tag:

0 commit comments

Comments
 (0)