File tree Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ SUBPACKAGE_DIRS=(
4
+ " core"
5
+ " xarray"
6
+ " mosaic"
7
+ " application"
8
+ " extensions"
9
+ )
10
+
11
+ for PACKAGE_DIR in " ${SUBPACKAGE_DIRS[@]} "
12
+ do
13
+ echo " Running tests for titiler-${PACKAGE_DIR} "
14
+ pushd ./src/titiler/${PACKAGE_DIR}
15
+ python -m pytest -s
16
+ popd
17
+ done
Original file line number Diff line number Diff line change @@ -1364,7 +1364,9 @@ def feature_image(
1364
1364
geojson : Annotated [Feature , Body (description = "GeoJSON Feature." )],
1365
1365
format : Annotated [
1366
1366
ImageType ,
1367
- "Default will be automatically defined if the output image needs a mask (png) or not (jpeg)." ,
1367
+ Field (
1368
+ description = "Default will be automatically defined if the output image needs a mask (png) or not (jpeg)."
1369
+ ),
1368
1370
] = None ,
1369
1371
src_path = Depends (self .path_dependency ),
1370
1372
reader_params = Depends (self .reader_dependency ),
Original file line number Diff line number Diff line change @@ -583,7 +583,9 @@ def tile(
583
583
] = 1 ,
584
584
format : Annotated [
585
585
ImageType ,
586
- "Default will be automatically defined if the output image needs a mask (png) or not (jpeg)." ,
586
+ Field (
587
+ description = "Default will be automatically defined if the output image needs a mask (png) or not (jpeg)." ,
588
+ ),
587
589
] = None ,
588
590
src_path = Depends (self .path_dependency ),
589
591
backend_params = Depends (self .backend_dependency ),
You can’t perform that action at this time.
0 commit comments