Skip to content

Commit 2ba8c5b

Browse files
committed
testing conda env for last test error
1 parent f54d0aa commit 2ba8c5b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
auditwheel repair -w {dest_dir} --plat manylinux_2_28_x86_64 {wheel}
4949
CIBW_TEST_COMMAND: |
5050
pip install {package}[test]
51-
pytest {project}/tests
51+
pytest -s {project}/tests
5252
CIBW_TEST_EXTRAS: "test"
5353
run: |
5454
python -m cibuildwheel --output-dir wheelhouse

quaddtype/tests/test_quaddtype.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ def test_array_operations():
9999
result = arr1 + arr2
100100
expected = np.array(
101101
[QuadPrecision("2.0"), QuadPrecision("3.5"), QuadPrecision("5.0")])
102+
# adding print statements in pytest
102103
print(f"result: {result}")
103104
print(f"expected: {expected}")
104105
assert np.all(result == expected)

0 commit comments

Comments
 (0)