mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-04-15 18:11:48 +04:00
update tests to change flake8 repo from gitlab to github
This commit is contained in:
parent
6a661f8453
commit
6f6a574a14
1 changed files with 6 additions and 6 deletions
|
|
@ -132,7 +132,7 @@ def test_validate_warn_on_unknown_keys_at_repo_level(tmpdir, caplog):
|
||||||
f = tmpdir.join('cfg.yaml')
|
f = tmpdir.join('cfg.yaml')
|
||||||
f.write(
|
f.write(
|
||||||
'repos:\n'
|
'repos:\n'
|
||||||
'- repo: https://gitlab.com/pycqa/flake8\n'
|
'- repo: https://github.com/pycqa/flake8\n'
|
||||||
' rev: 3.7.7\n'
|
' rev: 3.7.7\n'
|
||||||
' hooks:\n'
|
' hooks:\n'
|
||||||
' - id: flake8\n'
|
' - id: flake8\n'
|
||||||
|
|
@ -150,7 +150,7 @@ def test_validate_warn_on_unknown_keys_at_repo_level(tmpdir, caplog):
|
||||||
(
|
(
|
||||||
'pre_commit',
|
'pre_commit',
|
||||||
logging.WARNING,
|
logging.WARNING,
|
||||||
'Unexpected key(s) present on https://gitlab.com/pycqa/flake8: '
|
'Unexpected key(s) present on https://github.com/pycqa/flake8: '
|
||||||
'args',
|
'args',
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
@ -160,7 +160,7 @@ def test_validate_warn_on_unknown_keys_at_top_level(tmpdir, caplog):
|
||||||
f = tmpdir.join('cfg.yaml')
|
f = tmpdir.join('cfg.yaml')
|
||||||
f.write(
|
f.write(
|
||||||
'repos:\n'
|
'repos:\n'
|
||||||
'- repo: https://gitlab.com/pycqa/flake8\n'
|
'- repo: https://github.com/pycqa/flake8\n'
|
||||||
' rev: 3.7.7\n'
|
' rev: 3.7.7\n'
|
||||||
' hooks:\n'
|
' hooks:\n'
|
||||||
' - id: flake8\n'
|
' - id: flake8\n'
|
||||||
|
|
@ -210,7 +210,7 @@ def test_ci_key_must_be_map():
|
||||||
)
|
)
|
||||||
def test_warn_mutable_rev_ok(caplog, rev):
|
def test_warn_mutable_rev_ok(caplog, rev):
|
||||||
config_obj = {
|
config_obj = {
|
||||||
'repo': 'https://gitlab.com/pycqa/flake8',
|
'repo': 'https://github.com/pycqa/flake8',
|
||||||
'rev': rev,
|
'rev': rev,
|
||||||
'hooks': [{'id': 'flake8'}],
|
'hooks': [{'id': 'flake8'}],
|
||||||
}
|
}
|
||||||
|
|
@ -231,7 +231,7 @@ def test_warn_mutable_rev_ok(caplog, rev):
|
||||||
)
|
)
|
||||||
def test_warn_mutable_rev_invalid(caplog, rev):
|
def test_warn_mutable_rev_invalid(caplog, rev):
|
||||||
config_obj = {
|
config_obj = {
|
||||||
'repo': 'https://gitlab.com/pycqa/flake8',
|
'repo': 'https://github.com/pycqa/flake8',
|
||||||
'rev': rev,
|
'rev': rev,
|
||||||
'hooks': [{'id': 'flake8'}],
|
'hooks': [{'id': 'flake8'}],
|
||||||
}
|
}
|
||||||
|
|
@ -241,7 +241,7 @@ def test_warn_mutable_rev_invalid(caplog, rev):
|
||||||
(
|
(
|
||||||
'pre_commit',
|
'pre_commit',
|
||||||
logging.WARNING,
|
logging.WARNING,
|
||||||
"The 'rev' field of repo 'https://gitlab.com/pycqa/flake8' "
|
"The 'rev' field of repo 'https://github.com/pycqa/flake8' "
|
||||||
'appears to be a mutable reference (moving tag / branch). '
|
'appears to be a mutable reference (moving tag / branch). '
|
||||||
'Mutable references are never updated after first install and are '
|
'Mutable references are never updated after first install and are '
|
||||||
'not supported. '
|
'not supported. '
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue