Skip to content

Commit 373de25

Browse files
authored
Merge pull request #676 from Carreau/grow-matrix
Grow testing matrix on 3.6, 3,8 and latest numpy
2 parents 2c41dcd + 7cebd95 commit 373de25

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.7]
19-
numpy_version: ['==1.16.4']
18+
python-version: ['3.6.9' , 3.7, 3.8]
19+
numpy_version: ['==1.16.4', '']
2020
steps:
2121
- uses: actions/checkout@v2
2222
with:
@@ -41,8 +41,11 @@ jobs:
4141
python -m pip install -U pip setuptools wheel codecov
4242
python -m pip install -rrequirements_dev_minimal.txt numpy${{ matrix.numpy_version}} -rrequirements_dev_optional.txt
4343
python -m pip install -e .
44+
python -m pip freeze
4445
- name: Tests
4546
shell: "bash -l {0}"
47+
env:
48+
COVERAGE_FILE: .coverage.${{matrix.python-version}}.${{matrix.numpy_version}}
4649
run: |
4750
conda activate zarr-env
4851
pytest --cov=zarr --cov-config=.coveragerc --doctest-plus --cov-report xml --cov=./

requirements_dev_optional.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ redis==3.3.8
1111
pymongo==3.9.0
1212
# optional test requirements
1313
tox==3.14.0
14-
coverage==5.0.3
14+
coverage
1515
flake8==3.8.3
1616
pytest-cov==2.7.1
1717
pytest-doctestplus==0.4.0

0 commit comments

Comments
 (0)