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.
1 parent 595c5eb commit 633b841Copy full SHA for 633b841
cppython/plugins/conan/plugin.py
@@ -291,6 +291,10 @@ def publish(self) -> None:
291
# Add build mode (build everything for publishing)
292
command_args.extend(['--build', 'missing'])
293
294
+ # Skip test dependencies during publishing
295
+ command_args.extend(['-c', 'tools.graph:skip_test=True'])
296
+ command_args.extend(['-c', 'tools.build:skip_test=True'])
297
+
298
# Add cmake binary configuration if specified
299
if self._cmake_binary and self._cmake_binary != 'cmake':
300
# Quote the path if it contains spaces
0 commit comments