You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if not os.path.isdir(self.webTopDir):
self.log.fail("ERROR: Unable to initialize web directory to"
+ " {} - invalid path.".format(self.webTopDir))
before calling
os.mkdir(full_test_dir)
(fundamentally, this is because, in the function test_suite, the above check/error happens in load_params, which is called before make_test_dirs)
So if the web directory is not created by hand before running the test script, the test suite will crash early on.
The text was updated successfully, but these errors were encountered:
RemiLehe
changed the title
Test suite fails with invalid path before creating creating web directory
Test suite fails with invalid path before creating web directory
Feb 28, 2019
It seems that #33 introduced a small bug:
The code is now calling
before calling
(fundamentally, this is because, in the function
test_suite
, the above check/error happens inload_params
, which is called beforemake_test_dirs
)So if the web directory is not created by hand before running the test script, the test suite will crash early on.
The text was updated successfully, but these errors were encountered: