skip rbenv if ruby and gem are installed with default language_version

This commit is contained in:
Anthony Sottile 2020-06-15 13:50:47 -07:00
parent 0e5eb19929
commit e1e6a32c51
5 changed files with 78 additions and 39 deletions

View file

@ -38,10 +38,6 @@ skipif_cant_run_swift = pytest.mark.skipif(
parse_shebang.find_executable('swift') is None,
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')