mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
support pre-merge-commit
This commit is contained in:
parent
bf68512e7d
commit
c699e255a1
6 changed files with 39 additions and 6 deletions
|
|
@ -36,16 +36,15 @@ skipif_cant_run_docker = pytest.mark.skipif(
|
|||
os.name == 'nt' or not docker_is_running(),
|
||||
reason="Docker isn't running or can't be accessed",
|
||||
)
|
||||
|
||||
skipif_cant_run_swift = pytest.mark.skipif(
|
||||
parse_shebang.find_executable('swift') is None,
|
||||
reason='swift isn\'t installed or can\'t be found',
|
||||
reason="swift isn't installed or can't be found",
|
||||
)
|
||||
|
||||
xfailif_windows_no_ruby = pytest.mark.xfail(
|
||||
os.name == 'nt',
|
||||
reason='Ruby support not yet implemented on windows.',
|
||||
)
|
||||
xfailif_windows = pytest.mark.xfail(os.name == 'nt', reason='windows')
|
||||
|
||||
|
||||
def broken_deep_listdir(): # pragma: no cover (platform specific)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue