Commit Graph

7 Commits

Author SHA1 Message Date
erinnerim
1d7578251c Updates to import statements:
- Import importlib, os, and sys to each python script.
 - Append "lanforge-scripts" root directory to the system path, allowing each script to be called from an antecedent directory. e.g.
if 'lanforge-scripts' not in sys.path:
    sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../../../")))
 - All statements of the form 'from <module> import <class>' replace with:
<module> = importlib.import_module("lanforge-scripts.<directory>.<module>")
<class> = <module>.<class>
2021-09-15 16:17:16 -07:00
Jed Reynolds
6a2476dcf3 sta_connect_multi_example.py: turn cleanup on 2020-06-10 11:02:10 -07:00
Jed Reynolds
fe18cd9850 sta_connect.py: provides way of recording stations created during a test 2020-06-10 11:01:30 -07:00
Jed Reynolds
104e0d4bca sta_connect_multi_example: changes NA to [BLANK] 2020-06-09 17:45:27 -07:00
Jed Reynolds
e83488483f sta_connect_multi_example.py: a few options 2020-06-09 16:48:23 -07:00
Jed Reynolds
bc5f2feb49 sta_connect_multi_example.py: demonstrates using StaConnect to operate multiple tests on multiple ports 2020-06-09 14:09:12 -07:00
Jed Reynolds
8be8ae6112 sta_connect_multi_example - demonstrates connecting multiple stations and passing traffic 2020-06-09 13:52:03 -07:00