From 2b912b73470f3c47511b791841cb96675ba045eb Mon Sep 17 00:00:00 2001 From: Karamaz0V1 Date: Wed, 19 Aug 2020 15:27:55 +0200 Subject: [PATCH] Update ignore, re-enable laz test --- .gitignore | 1 + test/test_io.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 637a53d..d3b5b8a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ doc/_build doc/source __pycache__ log/ +.coverage diff --git a/test/test_io.py b/test/test_io.py index 87d4168..165fd1a 100644 --- a/test/test_io.py +++ b/test/test_io.py @@ -15,8 +15,8 @@ from idefix import io @pytest.mark.parametrize('fname, exp_point_count, exp_field_count', [ # TODO: test different LAS version # TODO: test LAS without field - ('test.las', 58629, 3, ), - #('test.laz', 58629, 3, ), + ('test.las', 58629, 4, ), + ('test.laz', 58629, 4, ), ]) def test_load_las(datadir, fname, exp_point_count, exp_field_count): fname = datadir.join(fname)