Skip to content

Commit f04fb1c

Browse files
author
Release Manager
committed
gh-39392: Test that the Sage git repo is clean. Test that the Sage git repo is clean <!-- ^ Please provide a concise and informative title. --> <!-- ^ Don't put issue numbers in the title, do this in the PR description below. --> <!-- ^ For example, instead of "Fixes #12345" use "Introduce new method to calculate 1 + 2". --> <!-- v Describe your changes below in detail. --> <!-- v Why is this change required? What problem does it solve? --> <!-- v If this PR resolves an open issue, please link to it here. For example, "Fixes #12345". --> Add a doctest which will check whether the Sage git repo is clean. The test is based on the top answer at https://unix.stackexchange.com/questions/155046/determine-if-git- working-directory-is-clean-from-a-script. ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [x] I have created tests covering the changes. - [ ] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - #12345: short description why this is a dependency --> <!-- - #34567: ... --> URL: #39392 Reported by: John H. Palmieri Reviewer(s):
2 parents 66310c6 + d8dc279 commit f04fb1c

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

Makefile

+14-2
Original file line numberDiff line numberDiff line change
@@ -253,9 +253,19 @@ TEST_TARGET = $@
253253

254254
TEST = ./sage -t --logfile=$(TEST_LOG) $(TEST_FLAGS) --optional=$(TEST_OPTIONAL) $(TEST_FILES)
255255

256+
test-git-no-uncommitted-changes:
257+
@UNCOMMITTED=$$(git status --porcelain); \
258+
if [ -n "$$UNCOMMITTED" ]; then \
259+
echo "Error: the git repo has uncommitted changes:"; \
260+
echo "$$UNCOMMITTED"; \
261+
echo; \
262+
exit 1; \
263+
fi
264+
256265
test: all
257266
@echo '### make $(TEST_TARGET): Running $(TEST)' >> $(TEST_LOG)
258-
$(TEST)
267+
$(TEST); \
268+
$(MAKE) test-git-no-uncommitted-changes
259269

260270
check:
261271
@$(MAKE) test
@@ -302,7 +312,8 @@ ptestoptionallong:
302312
test-nodoc: TEST_OPTIONAL := $(TEST_OPTIONAL),!sagemath_doc_html,!sagemath_doc_pdf
303313
test-nodoc: build
304314
@echo '### make $(TEST_TARGET): Running $(TEST)' >> $(TEST_LOG)
305-
$(TEST)
315+
$(TEST); \
316+
$(MAKE) test-git-no-uncommitted-changes
306317

307318
check-nodoc:
308319
@$(MAKE) test-nodoc
@@ -387,5 +398,6 @@ list:
387398
misc-clean bdist-clean distclean bootstrap-clean maintainer-clean \
388399
test check testoptional testall testlong testoptionallong testallong \
389400
ptest ptestoptional ptestall ptestlong ptestoptionallong ptestallong \
401+
test-git-no-uncommitted-changes \
390402
list \
391403
doc-clean clean sagelib-clean build-clean

0 commit comments

Comments
 (0)