Closed baiyunping333 closed 9 years ago
yes I've faced this bug as well. The way I've fixed is by updating line 30 of testcase.py file as follows:
original line:
case = TestCase(None, test_case_file_name)
fixed line:
case = TestCase(None, test_case_file_name.filename) # test_case_file_name.filename instead of test_case_file_name
May have other better fix, but at least this is working for me for the time being.
Thanks for the suggestions and workarounds. Checked in a commit to fix the issue reported.
in testcase.py:27,
test is a TestCase instance, not a file path string. maybe right is: