if a folder structure like below:
- testsuite
- testcase1
- testcase2
"testcase1" and "testcase2" are both normal txt file.
run as: pybot testsuite
will get error:
[ ERROR ] Unexpected error: ValueError: need more than 1 value to unpack
I debug this case, and find in robot/parsing/populators.py:
def _is_init_file(self, name, path):
if not os.path.isfile(path):
return False
base, extension = name.lower().rsplit('.', 1)
### if name contains no ".", it will raise exception here
return base == '__init__' and extension in READERS
Original issue reported on code.google.com by fei...@gmail.com on 7 Jul 2010 at 8:47
Original issue reported on code.google.com by
fei...@gmail.com
on 7 Jul 2010 at 8:47