Skip to content

Commit 28f6cd3

Browse files
committed
WIP: add logging for debug pytesst in ci
1 parent 5a7c0a6 commit 28f6cd3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/pypi-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: CMake Build
3737
run: cmake --build build --config Release
3838

39-
#FIXME: here we are probably missing to copy the dlls and pyds before building the wheel
39+
#FIXME: here we are probably missing to copy the dlls and pyds before building the wheel
4040

4141
- name: Build wheel
4242
run: |

tests/integration_tests/pybinds_tests/test_pybind_units.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ def test_DFPointCloud_init():
3838
def test_DFPointCloud_load_from_PLY():
3939
pc = dfb.dfb_geometry.DFPointCloud()
4040
ply_file_path = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), "test_data", "roof_quarter.ply")
41+
print(f"Loading PLY file from: {ply_file_path}")
4142
pc.load_from_PLY(ply_file_path)
43+
4244
assert pc.points.__len__() == 7379, "DFPointCloud should have 7379 points"
4345
assert pc.normals.__len__() == 7379, "DFPointCloud should have 7379 normals"
4446
assert pc.colors.__len__() == 7379, "DFPointCloud should have 7379 colors"

0 commit comments

Comments
 (0)