Skip to content

Commit 5e4d388

Browse files
committed
Update pytest to version 6
1 parent e5577ae commit 5e4d388

File tree

5 files changed

+28
-41
lines changed

5 files changed

+28
-41
lines changed

poetry.lock

Lines changed: 22 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ packages = [
3232
python = "^3.6"
3333

3434
[tool.poetry.dev-dependencies]
35-
pytest = "^5.4"
35+
pytest = "^6.2"
3636
pytest-asyncio = ">=0.14,<1"
3737
pytest-benchmark = "^3.2"
38-
pytest-cov = "^2.10"
38+
pytest-cov = "^2.11"
3939
pytest-describe = "^1.0"
4040
pytest-timeout = "^1.4"
4141
black = "20.8b1"

src/graphql/pyutils/frozen_dict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from copy import deepcopy
2-
from typing import Dict, Generic, TypeVar
2+
from typing import Dict, TypeVar
33

44
from .frozen_error import FrozenError
55

src/graphql/pyutils/frozen_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from copy import deepcopy
2-
from typing import Generic, List, TypeVar
2+
from typing import List, TypeVar
33

44
from .frozen_error import FrozenError
55

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ whitelist_externals = poetry
3939
setenv =
4040
PYTHONPATH = {toxinidir}
4141
deps =
42-
pytest>=5.4,<5.5
42+
pytest>=6.2,<7
4343
pytest-asyncio>=0.14,<1
4444
pytest-benchmark>=3.2,<4
45-
pytest-cov>=2.10,<3
45+
pytest-cov>=2.11,<3
4646
pytest-describe>=1,<2
4747
pytest-timeout>=1.4,<2
4848
commands =

0 commit comments

Comments
 (0)