Skip to content

Commit

Permalink
Change default testing interface to lo instead of ipogif.
Browse files Browse the repository at this point in the history
  • Loading branch information
mellis13 committed Jun 28, 2023
1 parent 85f48fb commit f169f74
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ jobs:

env:
SMARTSIM_REDISAI: ${{ matrix.rai }}
SMARTSIM_TEST_INTERFACE: lo

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion smartsim/_core/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f169f74

Please sign in to comment.