File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 38
38
runs-on : ubuntu-18.04
39
39
strategy :
40
40
matrix :
41
- python-version : [3.6 , 3.7 , 3.8 ]
41
+ python-version : [3.7 , 3.8 , 3.9 ]
42
42
services :
43
43
elasticsearch :
44
44
image : elasticsearch:7.3.2
64
64
discovery.type : single-node
65
65
ports :
66
66
- 39200:9200
67
+ elasticsearch_7_16 :
68
+ image : elasticsearch:7.16.1
69
+ env :
70
+ discovery.type : single-node
71
+ ports :
72
+ - 49200:9200
67
73
68
74
steps :
69
75
- uses : actions/checkout@v2
90
96
export ES_URI="http://localhost:39200"
91
97
export ES_PORT=39200
92
98
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
93
104
- name : Run tests on Opendistro
94
105
run : |
95
106
export ES_DRIVER=odelasticsearch
You can’t perform that action at this time.
0 commit comments