Skip to content

Commit

Permalink
Feature/resolve merge conflict v2 (#340)
Browse files Browse the repository at this point in the history
* Move vespa search tests & the search_fixtures they use under dedicated sub-folder  (#334)

* Move vespa search tests under dedicated vespa folder

* Move /search_fixtures under vespa search folder & rename to fixtures

* Bump to 1.14.20

* Move vespa search result order tests into a separate file (#335)

* Move vespa search tests under dedicated vespa folder

* Move /search_fixtures under vespa search folder & rename to fixtures

* Bump to 1.14.20

* Move vespa search result order tests to separate file

* Bump to 1.14.19

* Move continuation token vespa search tests to separate file (#336)

* Move vespa search tests under dedicated vespa folder

* Move /search_fixtures under vespa search folder & rename to fixtures

* Bump to 1.14.20

* Move vespa search result order tests to separate file

* Bump to 1.14.19

* Move vespa search continuation token tests to separate file

* Group pagination and continuation token tests

* Move keyword and range vespa search tests into separate file (#337)

* Move vespa search tests under dedicated vespa folder

* Move /search_fixtures under vespa search folder & rename to fixtures

* Bump to 1.14.20

* Move vespa search result order tests to separate file

* Bump to 1.14.19

* Move vespa search continuation token tests to separate file

* Move keyword and range vespa search tests into separate file

* Delete test_vespa_search_cont_tokens.py

* Move _make_search_request into vespa search setup

* Move vespa search tests for ignoring special chars & case to separate file (#338)

* Move data download tests into parent folder

* Move query insensitivity & special chars ignoring tests out

* Rename from test_vespasearch

* Bump to 1.14.20

* Removing refactored file.

* Adding back in the changes from the test_vespasearch.

---------

Co-authored-by: Katy Baulch <[email protected]>
Co-authored-by: Mark <[email protected]>
  • Loading branch information
3 people authored Sep 17, 2024
1 parent cc3a5f8 commit 75d0410
Show file tree
Hide file tree
Showing 20 changed files with 747 additions and 721 deletions.
2 changes: 1 addition & 1 deletion .trunk/trunk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ lint:
paths:
# Ignore test data JSON files
- tests/data/**/*.json
- tests/search/search_fixtures/**/*.json
- tests/search/vespa/fixtures/**/*.json
- scripts/**
- linters: [markdownlint]
paths:
Expand Down
10 changes: 5 additions & 5 deletions makefile-docker.defs
Original file line number Diff line number Diff line change
Expand Up @@ -80,17 +80,17 @@ vespa_healthy:
.ONESHELL:
vespa_deploy_schema:
vespa config set target local
@vespa deploy tests/search/search_fixtures/vespa_test_schema --wait 300
@vespa deploy tests/search/vespa/fixtures/vespa_test_schema --wait 300

.ONESHELL:
vespa_load_data:
vespa config set target local
vespa feed --progress=3 tests/search/search_fixtures/vespa_search_weights.json
vespa feed --progress=3 tests/search/search_fixtures/vespa_family_document.json
vespa feed --progress=3 tests/search/search_fixtures/vespa_document_passage.json
vespa feed --progress=3 tests/search/vespa/fixtures/vespa_search_weights.json
vespa feed --progress=3 tests/search/vespa/fixtures/vespa_family_document.json
vespa feed --progress=3 tests/search/vespa/fixtures/vespa_document_passage.json

vespa_setup: vespa_confirm_cli_installed vespa_healthy vespa_deploy_schema vespa_load_data
# Deploys a vespa application to a local vespa container and loads search_fixtures
# Deploys a vespa application to a local vespa container and loads search fixtures

.ONESHELL:
test_search:
Expand Down
Loading

0 comments on commit 75d0410

Please sign in to comment.