Skip to content

Commit 3984697

Browse files
committed
ci(tox.ini & GitHub Workflows): Need to include multidict for testing otherwise get ImportError, even though not required for normal install.
1 parent 4a79654 commit 3984697

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

.github/workflows/code-cover.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
python -m pip install --upgrade pip
2727
python -m pip install pytest
2828
python -m pip install pytest-cov
29+
python -m pip install multidict
2930
- name: Install pvl
3031
run: python -m pip install -e .
3132
- name: Test with pytest and generate coverage report

.github/workflows/python-test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
run: |
3131
python -m pip install --upgrade pip
3232
python -m pip install pytest flake8
33+
python -m pip install multidict
3334
- name: Lint with flake8
3435
run: |
3536
# stop the build if there are Python syntax errors or undefined names

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ commands =
88
pytest
99
deps =
1010
pytest
11+
multidict
1112

1213
[testenv:py{36, 37, 38}-allopts]
1314
deps =

0 commit comments

Comments
 (0)