File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 17
17
matrix :
18
18
python-version : ['3.6.9' , 3.7, 3.8]
19
19
numpy_version : ['==1.16.4', '']
20
+ services :
21
+ mongodb :
22
+ image : mongo:3.4.23
23
+ ports :
24
+ - 27017:27017
20
25
steps :
21
26
- uses : actions/checkout@v2
22
27
with :
@@ -39,13 +44,16 @@ jobs:
39
44
conda activate zarr-env
40
45
python -m pip install --upgrade pip
41
46
python -m pip install -U pip setuptools wheel codecov
42
- python -m pip install -rrequirements_dev_minimal.txt numpy${{ matrix.numpy_version}} -rrequirements_dev_optional.txt
47
+ python -m pip install -rrequirements_dev_minimal.txt numpy${{ matrix.numpy_version}} -rrequirements_dev_optional.txt pymongo
43
48
python -m pip install -e .
44
49
python -m pip freeze
45
50
- name : Tests
46
51
shell : " bash -l {0}"
47
52
env :
48
53
COVERAGE_FILE : .coverage.${{matrix.python-version}}.${{matrix.numpy_version}}
54
+ ZARR_TEST_ABS : 0
55
+ ZARR_TEST_MONGO : 1
56
+ ZARR_TEST_REDIS : 0
49
57
run : |
50
58
conda activate zarr-env
51
59
pytest --cov=zarr --cov-config=.coveragerc --doctest-plus --cov-report xml --cov=./
You can’t perform that action at this time.
0 commit comments