mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-04-16 10:31:46 +04:00
some more integration test fixes
This commit is contained in:
parent
3593c76757
commit
8c0817391f
2 changed files with 43 additions and 28 deletions
|
|
@ -42,6 +42,16 @@ skipif_cant_run_swift = pytest.mark.skipif(
|
|||
reason='swift isn\'t installed or can\'t be found',
|
||||
)
|
||||
|
||||
skipif_cant_run_go = pytest.mark.skipif(
|
||||
parse_shebang.find_executable('go') is None,
|
||||
reason='go isn\'t installed or can\'t be found',
|
||||
)
|
||||
|
||||
skipif_cant_run_bash = pytest.mark.skipif(
|
||||
parse_shebang.find_executable('bash') is None,
|
||||
reason='bash 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.',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue