Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't check whether yaml responses are well-formed
pyyaml is unable to parse complex dictionary keys: say, a list or a dictionary. See yaml/pyyaml#88 Tarantool however supports this kind of output: | tarantool> {[{k = 'v'}] = 1} | --- | - ? k: v | : 1 | ... When such response is arrived to test-run, pyyaml raises 'found unhashable key' exception and test-run reports it as '[Lost current connection]'. Let's consider 'core = tarantool' tests. There is no much need to verify whether a tarantool answer is well-formed yaml document, because it anyway will be verified against a result file. And also it is unable to handle the case above. So the check is removed. See tarantool/tarantool#4421
- Loading branch information