Update dev guide, lock aiohttp to a version that works. (#828)

* Update developer guide with test setup instructions using OpenSearch 2.12+.

Signed-off-by: dblock <dblock@amazon.com>

* Lock down aiohttp to <= 3.10.5.

Signed-off-by: dblock <dblock@amazon.com>

* Exclude failing integ test.

Signed-off-by: dblock <dblock@amazon.com>

---------

Signed-off-by: dblock <dblock@amazon.com>
This commit is contained in:
Daniel (dB.) Doubrovkine
2024-09-25 23:47:22 +02:00
committed by GitHub
parent a24b9f3f3c
commit 45d817289a
3 changed files with 4 additions and 3 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ docker pull opensearchproject/opensearch:latest
Integration tests will auto-start the docker image. To start it manually:
```
docker run -d -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" opensearchproject/opensearch:latest
docker run -d -p 9200:9200 -p 9600:9600 -e OPENSEARCH_INITIAL_ADMIN_PASSWORD=myStrongPassword123! -e "discovery.type=single-node" opensearchproject/opensearch:latest
```
## Running Tests
@@ -54,7 +54,7 @@ python setup.py test
To run tests in a specific test file.
```
python setup.py test -s test_opensearchpy/test_connection.py
python setup.py test -s test_opensearchpy/test_connection/test_base_connection.py
```
If you want to auto-start one, the following will start a new instance and run tests against the latest version of OpenSearch.