chore: bump dependencies (#52)
This commit is contained in:
Родитель
8d36d47b5e
Коммит
cc0ea518e1
|
@ -2,14 +2,14 @@
|
|||
# See https://pre-commit.com/hooks.html for more hooks
|
||||
repos:
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v3.4.0
|
||||
rev: v4.0.0
|
||||
hooks:
|
||||
- id: trailing-whitespace
|
||||
- id: end-of-file-fixer
|
||||
- id: check-yaml
|
||||
- id: check-added-large-files
|
||||
- repo: https://github.com/psf/black
|
||||
rev: 20.8b1
|
||||
rev: 21.5b1
|
||||
hooks:
|
||||
- id: black
|
||||
- repo: https://github.com/pre-commit/mirrors-mypy
|
||||
|
@ -17,6 +17,6 @@ repos:
|
|||
hooks:
|
||||
- id: mypy
|
||||
- repo: https://gitlab.com/pycqa/flake8
|
||||
rev: '3.9.0'
|
||||
rev: '3.9.2'
|
||||
hooks:
|
||||
- id: flake8
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
black==20.8b1
|
||||
pytest==6.2.2
|
||||
pytest-cov==2.11.1
|
||||
black==21.5b1
|
||||
pytest==6.2.4
|
||||
pytest-cov==2.12.0
|
||||
mypy==0.812
|
||||
setuptools==54.2.0
|
||||
setuptools==56.2.0
|
||||
twine==3.4.1
|
||||
wheel==0.36.2
|
||||
flake8==3.9.0
|
||||
pre-commit==2.11.1
|
||||
Django==3.1.7
|
||||
flake8==3.9.2
|
||||
pre-commit==2.12.1
|
||||
Django==3.2.3
|
||||
|
|
|
@ -86,10 +86,7 @@ def test_invalid_browser_channel(testdir: Any) -> None:
|
|||
)
|
||||
result = testdir.runpytest("--browser-channel", "not-exists")
|
||||
result.assert_outcomes(errors=1)
|
||||
assert (
|
||||
"channel: expected one of (chrome|chrome-beta|chrome-dev|chrome-canary|msedge|msedge-beta|msedge-dev|msedge-canary)"
|
||||
in "\n".join(result.outlines)
|
||||
)
|
||||
assert "channel: expected one of " in "\n".join(result.outlines)
|
||||
|
||||
|
||||
def test_multiple_browsers(testdir: Any) -> None:
|
||||
|
|
Загрузка…
Ссылка в новой задаче