Skip to content

Commit

Permalink
remove mention of selenium
Browse files Browse the repository at this point in the history
  • Loading branch information
dwelch-spike committed Jan 9, 2025
1 parent 1c4df16 commit 0e66eeb
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 20 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/test-prism-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,6 @@ jobs:
sleep 30 # Wait for the server to be ready
# TODO come up with a better/faster way to wait for the server to be ready
# Verify Chrome and ChromeDriver Installation
- name: Verify Chrome and ChromeDriver
run: |
google-chrome --version
chromedriver --version
# Run Pytest tests
- name: Run Pytest
working-directory: ${{ env.WORKING_DIR }}
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/test-quote-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,6 @@ jobs:
sleep 60 # Wait for the server to be ready
# TODO come up with a better/faster way to wait for the server to be ready
# Verify Chrome and ChromeDriver Installation
- name: Verify Chrome and ChromeDriver
run: |
google-chrome --version
chromedriver --version
# Run Pytest tests
- name: Run Pytest
working-directory: ${{ env.WORKING_DIR }}
Expand Down
5 changes: 2 additions & 3 deletions prism-image-search/tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ Create a virtual environment and install the requirements in requirements.txt.
pip install -r requirements.txt
```

The tests use selenium with the chrome web driver so make sure that is installed on your system.

> [!IMPORTANT]
> Run the example app with the IMAGE_DIR environment variable pointing to your test image data. The CI tests use ../container-volumes/prism/images/static/data as it contains one image already.
Run the prism image search example app so that it listens on port 8080. If it is not running on port 8080, you will have to change the tests.
Run the prism image search example app so that it listens on port 8080.
If it is not running on port 8080, you can run the tests with the --app-address option set to the correct address:port.

Then run the tests with pytest.
```shell
Expand Down
1 change: 0 additions & 1 deletion prism-image-search/tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pytest
selenium
requests
aerospike-vector-search
5 changes: 2 additions & 3 deletions quote-semantic-search/tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ Create a virtual environment and install the requirements in requirements.txt.
pip install -r requirements.txt
```

The tests use selenium with the chrome web driver so make sure that is installed on your system.

Run the quote search example app so that it listens on port 8080. If it is not running on port 8080, you will have to change the tests.
Run the quote search example app so that it listens on port 8080.
If it is not running on port 8080, you can run the tests with the --app-address option set to the correct address:port.

Then run the tests with pytest.
```shell
Expand Down
1 change: 0 additions & 1 deletion quote-semantic-search/tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pytest
selenium
requests
aerospike-vector-search

0 comments on commit 0e66eeb

Please sign in to comment.