Skip to content

Commit 7f693bb

Browse files
committed
Merge remote-tracking branch 'origin/patch-3' into patch-2
2 parents 9957da1 + 1dbbe27 commit 7f693bb

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ jobs:
3636
python-version: ${{ matrix.python-version }}
3737
cache: pip
3838

39+
- name: Install system deps (only PyPy)
40+
if: startsWith(matrix.python-version, 'pypy')
41+
run: |
42+
sudo apt-get update
43+
sudo apt-get install -y libjpeg-dev zlib1g-dev pkg-config
44+
3945
- name: Install dependencies
4046
run: python -m pip install tox-gh-actions
4147

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ testall:
5454
# DOC: Run tests for the currently installed version
5555
# Remove cgi warning when dropping support for Django 3.2.
5656
test:
57-
mypy --ignore-missing-imports tests/test_typing.py
5857
python \
5958
-b \
6059
-X dev \
@@ -77,6 +76,7 @@ lint:
7776
$(FLAKE8) --ignore F401 $(PACKAGE)/__init__.py
7877
$(ISORT) --check-only --diff $(EXAMPLES_DIR) $(PACKAGE) $(SETUP_PY) $(TESTS_DIR)
7978
check-manifest
79+
mypy --ignore-missing-imports tests/test_typing.py
8080

8181
coverage:
8282
$(COVERAGE) erase

0 commit comments

Comments
 (0)