mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-02 08:44:44 +00:00
skip nvidia integration in github actions
This commit is contained in:
parent
1381d3f3e8
commit
4491a51149
1 changed files with 14 additions and 0 deletions
14
tests/integration/providers/nvidia/conftest.py
Normal file
14
tests/integration/providers/nvidia/conftest.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
# All rights reserved.
|
||||
#
|
||||
# This source code is licensed under the terms described in the LICENSE file in
|
||||
# the root directory of this source tree.
|
||||
|
||||
import os
|
||||
|
||||
import pytest
|
||||
|
||||
# Skip all tests in this directory when running in GitHub Actions
|
||||
in_github_actions = os.environ.get("GITHUB_ACTIONS") == "true"
|
||||
if in_github_actions:
|
||||
pytest.skip("Skipping NVIDIA tests in GitHub Actions environment", allow_module_level=True)
|
Loading…
Add table
Add a link
Reference in a new issue