Skip to content

Commit 9bc4590

Browse files
committed
add debug line
1 parent 18fd299 commit 9bc4590

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test_package/conanfile.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import os
33

44
from conan import ConanFile
5+
from conan.api.output import ConanOutput
56
from conan.errors import ConanException
67
from conan.tools.cmake import CMake, cmake_layout
78
from conan.tools.build import can_run
@@ -40,5 +41,7 @@ def test(self):
4041
out = proc.communicate()[0]
4142
pass
4243

44+
ConanOutput("test package").writeln(out)
45+
4346
if f"Module listening on {sock}" not in out:
4447
raise ConanException(f"Simple example failed to start module listening")

0 commit comments

Comments
 (0)