diff --git a/integration-tests/models/test_flash_llama.py b/integration-tests/models/test_flash_llama.py index c69314ff..e9e5ab09 100644 --- a/integration-tests/models/test_flash_llama.py +++ b/integration-tests/models/test_flash_llama.py @@ -1,5 +1,8 @@ import pytest +# TODO: avoid skipping module when CI permissions are fixed +pytest.skip(allow_module_level=True) + @pytest.fixture(scope="module") def flash_llama_handle(launcher): diff --git a/integration-tests/models/test_flash_llama_gptq.py b/integration-tests/models/test_flash_llama_gptq.py index b87f054b..7e4e22dc 100644 --- a/integration-tests/models/test_flash_llama_gptq.py +++ b/integration-tests/models/test_flash_llama_gptq.py @@ -1,5 +1,8 @@ import pytest +# TODO: avoid skipping module when CI permissions are fixed +pytest.skip(allow_module_level=True) + @pytest.fixture(scope="module") def flash_llama_gptq_handle(launcher):