We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TEST_REQUIREMENTS
1 parent 849182f commit 3e122dfCopy full SHA for 3e122df
CHANGES.md
@@ -2,6 +2,8 @@
2
3
## 1.1.0 (unreleased)
4
5
+- Fix install failing if test domain used but no `TEST_REQUIREMENTS` defined.
6
+
7
- Feature: Add target `zope-adduser` to create an emergency user.
8
9
## 1.0 (2025-02-11)
src/mxmake/topics/qa/test.mk
@@ -28,7 +28,7 @@
28
TEST_TARGET:=$(SENTINEL_FOLDER)/test.sentinel
29
$(TEST_TARGET): $(MXENV_TARGET)
30
@echo "Install $(TEST_REQUIREMENTS)"
31
- @$(PYTHON_PACKAGE_COMMAND) install $(TEST_REQUIREMENTS)
+ @test -z "$(TEST_REQUIREMENTS)" || $(PYTHON_PACKAGE_COMMAND) install $(TEST_REQUIREMENTS)
32
@touch $(TEST_TARGET)
33
34
.PHONY: test
0 commit comments