File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 4040 with :
4141 python-version : ' 3.x'
4242 - name : Install dependencies
43- run : python -m pip install mypy types-mock types- setuptools .
43+ run : python -m pip install mypy types-setuptools .
4444 - name : mypy
4545 run : mypy .
4646
7070 with :
7171 python-version : " ${{ matrix.python-version }}"
7272 - name : Install dependencies
73- run : python -m pip install mock tox "${{ matrix.pytest-version }}" pytest-cov .
73+ run : python -m pip install tox "${{ matrix.pytest-version }}" pytest-cov .
7474 - name : Test
7575 run : |
7676 coverage run --branch --source=pytest_unordered -m pytest tests/
Original file line number Diff line number Diff line change 33from typing import Iterable
44from typing import List
55from typing import Mapping
6+ from unittest .mock import ANY
67
78import pytest
89from _pytest .pytester import Pytester
910from pytest import raises
1011
11- from mock import ANY
1212from pytest_unordered import UnorderedList
1313from pytest_unordered import _compare_eq_unordered
1414from pytest_unordered import unordered
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ commands =
77deps =
88 coverage
99 codecov
10- mock
1110 pytest7: pytest ==7.4.4
1211 pytest8: pytest ==8.1.1
1312 pytestlatest: pytest
@@ -27,7 +26,6 @@ commands = mypy .
2726deps =
2827 mypy
2928 pytest
30- types-mock
3129 types-setuptools
3230
3331[flake8]
You can’t perform that action at this time.
0 commit comments