Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
with:
python-version: '3.x'
- name: Install dependencies
run: python -m pip install mypy types-mock types-setuptools .
run: python -m pip install mypy types-setuptools .
- name: mypy
run: mypy .

Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
with:
python-version: "${{ matrix.python-version }}"
- name: Install dependencies
run: python -m pip install mock tox "${{ matrix.pytest-version }}" pytest-cov .
run: python -m pip install tox "${{ matrix.pytest-version }}" pytest-cov .
- name: Test
run: |
coverage run --branch --source=pytest_unordered -m pytest tests/
Expand Down
2 changes: 1 addition & 1 deletion tests/test_unordered.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
from typing import Iterable
from typing import List
from typing import Mapping
from unittest.mock import ANY

import pytest
from _pytest.pytester import Pytester
from pytest import raises

from mock import ANY
from pytest_unordered import UnorderedList
from pytest_unordered import _compare_eq_unordered
from pytest_unordered import unordered
Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ commands =
deps =
coverage
codecov
mock
pytest7: pytest==7.4.4
pytest8: pytest==8.1.1
pytestlatest: pytest
Expand All @@ -27,7 +26,6 @@ commands = mypy .
deps =
mypy
pytest
types-mock
types-setuptools

[flake8]
Expand Down