@@ -45,24 +45,24 @@ fmt: ## Format the code using Darker
45
45
46
46
.PHONY : dev/bumpversion-patch
47
47
dev/bumpversion-patch : # # 'bumpversion path' to go from 4.1.0 -> 4.1.1
48
- bump2version --verbose patch
48
+ bump-my-version bump --verbose patch
49
49
50
50
.PHONY : bumpversion-minor
51
51
dev/bumpversion-minor : # # 'bumpversion minor' to go from 4.1.1 -> 4.2.0
52
- bump2version --verbose minor
52
+ bump-my-version bump --verbose minor
53
53
54
54
.PHONY : bumpversion-major
55
55
dev/bumpversion-major : # # 'bumpversion major' to go from 4.2.9 -> 5.0.0
56
- bump2version --verbose major
56
+ bump-my-version bump --verbose major
57
57
58
58
.PHONY : dev/bumpversion-build
59
59
dev/bumpversion-build : # # 'bumpversion build' to go from 5.3.7.a1 -> 5.3.7.a2
60
- bump2version --verbose build
60
+ bump-my-version bump --verbose build
61
61
62
62
# another 'bumpversion release' to from from 5.3.7.b1 -> 5.3.7
63
63
.PHONY : dev/bumpversion-release
64
64
dev/bumpversion-release : # # 'bumpversion release' to from 5.3.7.a1 -> 5.3.7.b1
65
- bump2version --verbose release
65
+ bump-my-version bump --verbose release
66
66
67
67
# Documentation Management
68
68
@@ -172,7 +172,7 @@ test/unit: ## Run unit tests
172
172
@which tox || (echo " tox not found, installing it now" && pip install tox)
173
173
tox -e py311
174
174
175
- .PHONY : test/integration/standalone
175
+ .PHONY : test/integration/standalone
176
176
test/integration/standalone : # # Run integration tests
177
177
# if pytest is not found raise a warning and install it
178
178
@which pytest || (echo " pytest not found, installing it now" && pip install -r integration_requirements.txt)
@@ -187,4 +187,4 @@ test/integration/standalone: ## Run integration tests
187
187
GALAXY_POLLING_MAX_ATTEMPTS=50 \
188
188
pytest galaxy_ng/tests/integration \
189
189
-p 'no:pulpcore' -p 'no:pulp_ansible' \
190
- -v -r sx --color=yes -m 'deployment_standalone or all'
190
+ -v -r sx --color=yes -m 'deployment_standalone or all'
0 commit comments