Update ignore, re-enable laz test

This commit is contained in:
Florent Guiotte 2020-08-19 15:27:55 +02:00
parent b00ebafd1b
commit 2b912b7347
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ doc/_build
doc/source doc/source
__pycache__ __pycache__
log/ log/
.coverage

View File

@ -15,8 +15,8 @@ from idefix import io
@pytest.mark.parametrize('fname, exp_point_count, exp_field_count', [ @pytest.mark.parametrize('fname, exp_point_count, exp_field_count', [
# TODO: test different LAS version # TODO: test different LAS version
# TODO: test LAS without field # TODO: test LAS without field
('test.las', 58629, 3, ), ('test.las', 58629, 4, ),
#('test.laz', 58629, 3, ), ('test.laz', 58629, 4, ),
]) ])
def test_load_las(datadir, fname, exp_point_count, exp_field_count): def test_load_las(datadir, fname, exp_point_count, exp_field_count):
fname = datadir.join(fname) fname = datadir.join(fname)