Adding untracked files from datastack tests. RE:#342
This commit is contained in:
parent
134bd924ee
commit
b60e3e9b6c
|
@ -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'}},
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
ARGS_SPEC = {
|
||||
'args': {
|
||||
'foo': {'type': 'file'},
|
||||
'bar': {'type': 'file'},
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
ARGS_SPEC = {
|
||||
'args': {
|
||||
'some_file': {'type': 'file'},
|
||||
'data_dir': {'type': 'directory'},
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
ARGS_SPEC = {
|
||||
'args': {
|
||||
'vector': {'type': 'vector'},
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue