Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sguionni committed Jun 3, 2024
1 parent 197be83 commit f0f4ffc
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/app/test/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake.test(None, None, ["--output-on-failure"])
cmake.ctest(["--output-on-failure"])

def package(self):
cmake = CMake(self)
Expand Down
2 changes: 1 addition & 1 deletion lib/io/test/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake.test(None, None, ["--output-on-failure"])
cmake.ctest(["--output-on-failure"])

def package(self):
cmake = CMake(self)
Expand Down
2 changes: 1 addition & 1 deletion lib/python_binding/test/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake.test(None, None, ["--output-on-failure"])
cmake.ctest(["--output-on-failure"])

def package(self):
cmake = CMake(self)
Expand Down
2 changes: 1 addition & 1 deletion lib/renderer/test/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake.test(None, None, ["--output-on-failure"])
cmake.ctest(["--output-on-failure"])

def package(self):
cmake = CMake(self)
Expand Down
2 changes: 1 addition & 1 deletion lib/tool/test/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake.test(None, None, ["--output-on-failure"])
cmake.ctest(["--output-on-failure"])

def package(self):
cmake = CMake(self)
Expand Down
2 changes: 1 addition & 1 deletion lib/tool/tools/mdprep/test/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake.test(None, None, ["--output-on-failure"]) # TODO uncomment this when build is stable
cmake.ctest(["--output-on-failure"]) # TODO uncomment this when build is stable

def package(self):
cmake = CMake(self)
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/test/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake.test(None, None, ["--output-on-failure"])
cmake.ctest(["--output-on-failure"])

def package(self):
cmake = CMake(self)
Expand Down
2 changes: 1 addition & 1 deletion lib/util/test/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake.test(None, None, ["--output-on-failure"])
cmake.ctest(["--output-on-failure"])

def package(self):
cmake = CMake(self)
Expand Down

0 comments on commit f0f4ffc

Please sign in to comment.