Skip to content

Commit 524cb28

Browse files
committed
add ES 7.15 to tests and python 3.9
1 parent b9f60ac commit 524cb28

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/ci.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-18.04
3939
strategy:
4040
matrix:
41-
python-version: [3.6, 3.7, 3.8]
41+
python-version: [3.7, 3.8, 3.9]
4242
services:
4343
elasticsearch:
4444
image: elasticsearch:7.3.2
@@ -64,6 +64,12 @@ jobs:
6464
discovery.type: single-node
6565
ports:
6666
- 39200:9200
67+
elasticsearch_7_16:
68+
image: elasticsearch:7.16.1
69+
env:
70+
discovery.type: single-node
71+
ports:
72+
- 49200:9200
6773

6874
steps:
6975
- uses: actions/checkout@v2
@@ -90,6 +96,11 @@ jobs:
9096
export ES_URI="http://localhost:39200"
9197
export ES_PORT=39200
9298
nosetests -v --with-coverage --cover-package=es es.tests
99+
- name: Run tests on Elasticsearch 7.16.X
100+
run: |
101+
export ES_URI="http://localhost:49200"
102+
export ES_PORT=49200
103+
nosetests -v --with-coverage --cover-package=es es.tests
93104
- name: Run tests on Opendistro
94105
run: |
95106
export ES_DRIVER=odelasticsearch

0 commit comments

Comments
 (0)