some more integration test fixes

This commit is contained in:
Bernat Gabor 2017-10-27 14:55:52 +01:00
parent 3593c76757
commit 8c0817391f
No known key found for this signature in database
GPG key ID: 25F70E3BB8B17899
2 changed files with 43 additions and 28 deletions

View file

@ -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.',