Skip to content

Commit

Permalink
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@
import os
from os.path import split
from os.path import splitext
import platform
import random
import subprocess
import sys
@@ -116,7 +117,9 @@ def use_global_tracer():

@pytest.fixture
def auto_enable_crashtracking():
yield True
# Crashtracking is only supported on linux right now
# TODO: Default to `True` when Windows and Darwin are supported
yield platform.system() == "Linux"


@pytest.fixture(autouse=True)

0 comments on commit 79c0cf6

Please sign in to comment.