We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d572228 commit fd79f2dCopy full SHA for fd79f2d
release_tester/arangodb/installers/__init__.py
@@ -93,7 +93,7 @@ def __init__(
93
self.do_install = self.deployment_mode in ["all", "install"]
94
self.do_uninstall = self.deployment_mode in ["all", "uninstall"]
95
self.do_system_test = self.deployment_mode in ["all", "system"] and self.have_system_service
96
- self.do_starter_test = self.deployment_mode in ["all", "tests"]
+ self.do_starter_test = self.deployment_mode != "none" # in ["all", "tests"]
97
self.install_prefix = Path("/")
98
99
self.base_test_dir = bc.test_data_dir
0 commit comments