Add tool scripts #1

Merged
florent merged 7 commits from develop into master 2024-11-10 15:43:36 +01:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 2b912b7347 - Show all commits

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)