test lua directly

This commit is contained in:
Anthony Sottile 2023-01-17 23:43:31 -05:00
parent 6014ebd2e7
commit f042540311
6 changed files with 58 additions and 53 deletions

View file

@ -45,10 +45,6 @@ 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_lua = pytest.mark.skipif(
os.name == 'nt',
reason="lua isn't installed or can't be found",
)
xfailif_windows = pytest.mark.xfail(os.name == 'nt', reason='windows')