From f169f743bb05f729e4294406f918f378e84bdd88 Mon Sep 17 00:00:00 2001 From: Matt Ellis Date: Wed, 28 Jun 2023 12:48:37 -0500 Subject: [PATCH] Change default testing interface to lo instead of ipogif. --- .github/workflows/run_tests.yml | 1 - smartsim/_core/config/config.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 8d622b7688..91e717c09a 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -64,7 +64,6 @@ jobs: env: SMARTSIM_REDISAI: ${{ matrix.rai }} - SMARTSIM_TEST_INTERFACE: lo steps: - uses: actions/checkout@v2 diff --git a/smartsim/_core/config/config.py b/smartsim/_core/config/config.py index 99db811965..4c69f2943f 100644 --- a/smartsim/_core/config/config.py +++ b/smartsim/_core/config/config.py @@ -188,7 +188,7 @@ def test_interface(self) -> t.List[str]: # pragma: no cover elif "ib0" in net_if_addrs: return ["ib0"] # default to aries network - return ["ipogif0"] + return ["lo"] @property def test_account(self) -> t.Optional[str]: # pragma: no cover