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)