Test suite modernization

This commit is contained in:
John McCardle 2026-02-09 08:15:18 -05:00
commit 52fdfd0347
141 changed files with 9947 additions and 4665 deletions

View file

@ -12,6 +12,13 @@ Tests:
import mcrfpy
import sys
# Check if kernel_transform is implemented (Issue #198 may be pending)
_hm = mcrfpy.HeightMap((2, 2))
if not hasattr(_hm, 'kernel_transform'):
print("SKIP: HeightMap.kernel_transform() not yet implemented (Issue #198)")
sys.exit(0)
del _hm
def test_blur_kernel():
"""Test 3x3 averaging blur kernel"""