Commit Graph

4 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
Dipti
4a9f4bdfdb test_x script, edits to tests/help 2020-11-19 11:59:16 -08:00
Logan Lipke
098855b2fa Added output, fixed logic 2020-10-30 14:09:17 -07:00
Logan Lipke
2d30779ade Script for loading dbs and controlling test groups 2020-10-28 17:55:52 -07:00