AutoGPT/autogpt/tests/utils.py

11 lines
210 B
Python

import os
import pytest
def skip_in_ci(test_function):
return pytest.mark.skipif(
os.environ.get("CI") == "true",
reason="This test doesn't work on GitHub Actions.",
)(test_function)