File size: 210 Bytes
3382f47
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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)