From bc259b7eab8a8d609c54ccfd097e0642f24cacf1 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 24 Jan 2020 00:54:19 -0500 Subject: [PATCH] Use trip as default in all tests for now --- tests/conftest.py | 2 +- tractor/testing/_tractor_test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index d9be19a..d8607ec 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -38,7 +38,7 @@ def pytest_generate_tests(metafunc): methods = get_all_start_methods() if platform.system() != "Windows": - methods += ['trip'] + methods += ['trio_run_in_process'] if 'fork' in methods: # fork not available on windows, so check before removing # XXX: the fork method is in general incompatible with diff --git a/tractor/testing/_tractor_test.py b/tractor/testing/_tractor_test.py index 7d8289e..2399318 100644 --- a/tractor/testing/_tractor_test.py +++ b/tractor/testing/_tractor_test.py @@ -28,7 +28,7 @@ def tractor_test(fn): *args, loglevel=None, arb_addr=None, - start_method='forkserver', + start_method='trio_run_in_process', **kwargs ): # __tracebackhide__ = True