Skip to content

Commit 2820a3e

Browse files
committed
WIP: commenting out for testing pytest ci x2
1 parent e235cf5 commit 2820a3e

File tree

5 files changed

+3
-15
lines changed

5 files changed

+3
-15
lines changed

.github/workflows/test-pass.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ jobs:
6565
- name: Run tests with cmake
6666
run: |
6767
cd build/
68-
conda run --name diff_check --no-capture-output ctest -C Release --verbose --output-on-failure
68+
conda run --name diff_check --no-capture-output ctest --output-on-failure -C Release --verbose

tests/integration_tests/ghcomponents_tests/__init__.py

Whitespace-only changes.

tests/integration_tests/package_tests/__init__.py

Whitespace-only changes.

tests/integration_tests/pybinds_tests/__init__.py

Whitespace-only changes.

tests/integration_tests/pybinds_tests/test_pybind_units.py

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,13 @@
1919
print(file)
2020
sys.exit(1)
2121

22-
# # getting the test data paths
23-
# def debug_directory_contents(path):
24-
# print(f"Checking contents of directory: {path}")
25-
# if os.path.exists(path):
26-
# for file in os.listdir(path):
27-
# print(file)
28-
# else:
29-
# print(f"Directory does not exist: {path}")
30-
3122
def get_ply_cloud_roof_quarter_path():
3223
base_test_data_dir = os.getenv('DF_TEST_DATA_DIR', os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', 'test_data')))
3324
ply_file_path = os.path.join(base_test_data_dir, "roof_quarter.ply")
3425
if not os.path.exists(ply_file_path):
3526
raise FileNotFoundError(f"PLY file not found at: {ply_file_path}")
36-
print(f"base_test_data_dir: {base_test_data_dir}") # Debug
37-
print(f"ply_file_path: {ply_file_path}") # Debug
38-
# debug_directory_contents(base_test_data_dir)
39-
# with open(ply_file_path, 'r') as file:
40-
# print(file.read()) # Print file contents for debugging
27+
print(f"base_test_data_dir: {base_test_data_dir}") #TODO: Debug
28+
print(f"ply_file_path: {ply_file_path}") #TODO: Debug
4129
return ply_file_path
4230

4331
#------------------------------------------------------------------------------

0 commit comments

Comments
 (0)