1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#!/usr/bin/make -f
export PYBUILD_TEST_ARGS=\
-k "not test_instance \
and not test_links \
and not test_from_file \
and not test_search_max_items_unlimited_default \
and not test_signing \
and not test_sign_with_return_warns \
and not test_get_queryables \
and not test_get_queryables_collections \
and not test_changing_conforms_to_changes_behavior \
and not test_collections_are_clients \
and not test_get_items_without_ids \
and not test_non_recursion_on_fallback \
and not test_get_items \
and not test_get_items_with_ids \
and not test_get_item \
and not test_get_item_with_item_search \
and not test_get_queryables \
and not test_localized_datetime_converted_to_utc \
and not test_results \
and not test_ids_results \
and not test_datetime_results \
and not test_intersects_results \
and not test_result_paging \
and not test_result_paging_max_items \
and not test_item_collection \
and not test_deprecations \
and not test_items_as_dicts \
and not test_query_shortcut_syntax \
and not test_query_json_syntax \
and not test_request_input \
and not test_str_input \
and not test_timeout_smoke_test \
and not test_fallback_strategy \
and not test_item_search \
and not test_filter \
and not test_intersects \
and not test_non_conformant_raises_by_default \
and not test_non_conformant_raises_if_warning_set_to_error \
and not test_non_conformant_can_be_fixed \
and not test_non_conformant_can_be_ignored \
and not test_altering_conforms_to \
and not test_matched_not_available \
and not test_matched \
and not test_save \
and not test_collections \
and not test_stac_io_in_pystac \
and not test_search \
and not test_q_results \
and not test_bbox_results \
and not test_enabled_but_client_side_q \
and not test_client_side_q \
and not test_client_side_bbox \
and not test_client_side_datetime \
and not test_collection_search[inprocess] \
and not test_query_string_in_collections_url" \
--block-network
%:
dh $@ --buildsystem=pybuild
|