Adding untracked files from datastack tests. RE:#342

This commit is contained in:
James Douglass 2021-12-14 16:17:20 -08:00
parent 134bd924ee
commit b60e3e9b6c
5 changed files with 38 additions and 0 deletions

View File

View File

@ -0,0 +1,21 @@
ARGS_SPEC = {
'args': {
'blank': {'type': 'freestyle_string'},
'a': {'type': 'integer'},
'b': {'type': 'freestyle_string'},
'c': {'type': 'freestyle_string'},
'foo': {'type': 'file'},
'bar': {'type': 'file'},
'data_dir': {'type': 'directory'},
'raster': {'type': 'raster'},
'vector': {'type': 'vector'},
'simple_table': {'type': 'csv'},
'spatial_table': {
'type': 'csv',
'columns': {
'ID': {'type': 'integer'},
'path': {'type': {'raster', 'vector'}},
}
}
}
}

View File

@ -0,0 +1,6 @@
ARGS_SPEC = {
'args': {
'foo': {'type': 'file'},
'bar': {'type': 'file'},
}
}

View File

@ -0,0 +1,6 @@
ARGS_SPEC = {
'args': {
'some_file': {'type': 'file'},
'data_dir': {'type': 'directory'},
}
}

View File

@ -0,0 +1,5 @@
ARGS_SPEC = {
'args': {
'vector': {'type': 'vector'},
}
}