fixtures_signer.py (310B)
1 # standard imports 2 #import os 3 4 # external imports 5 import pytest 6 7 8 @pytest.fixture(scope='function') 9 def agent_roles( 10 eth_accounts, 11 ): 12 return { 13 'ALICE': eth_accounts[20], 14 'BOB': eth_accounts[21], 15 'CAROL': eth_accounts[23], 16 'DAVE': eth_accounts[24], 17 }