├── .gitignore ├── README.md ├── config.json ├── example_test_folder └── unit_test.py ├── unit_test_launcher.py └── unit_test_launcher.toe /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.orig 3 | Backup/* 4 | *.*.toe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobmartinez3d/TD_Unit_Test_Launcher/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobmartinez3d/TD_Unit_Test_Launcher/HEAD/config.json -------------------------------------------------------------------------------- /example_test_folder/unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobmartinez3d/TD_Unit_Test_Launcher/HEAD/example_test_folder/unit_test.py -------------------------------------------------------------------------------- /unit_test_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobmartinez3d/TD_Unit_Test_Launcher/HEAD/unit_test_launcher.py -------------------------------------------------------------------------------- /unit_test_launcher.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobmartinez3d/TD_Unit_Test_Launcher/HEAD/unit_test_launcher.toe --------------------------------------------------------------------------------