mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-24 13:05:01 +00:00
23 lines
712 B
Python
23 lines
712 B
Python
import os
|
|
import pytest
|
|
from . import run
|
|
from .conditions import has_http
|
|
|
|
|
|
def test_unit(cmake, unittest):
|
|
cwd = cmake(
|
|
["sentry_test_unit"], {"SENTRY_BACKEND": "none", "SENTRY_TRANSPORT": "none"}
|
|
)
|
|
env = dict(os.environ)
|
|
run(cwd, "sentry_test_unit", ["--no-summary", unittest], check=True, env=env)
|
|
|
|
|
|
@pytest.mark.skipif(not has_http, reason="tests need http transport")
|
|
def test_unit_transport(cmake, unittest):
|
|
if unittest in ["custom_logger"]:
|
|
pytest.skip("excluded from transport test-suite")
|
|
|
|
cwd = cmake(["sentry_test_unit"], {"SENTRY_BACKEND": "none"})
|
|
env = dict(os.environ)
|
|
run(cwd, "sentry_test_unit", ["--no-summary", unittest], check=True, env=env)
|