August 2018
Beginner
160 pages
4h 8m
English
This mode will show a portion of the code for all frames of failure tracebacks, making it quite verbose:
============================= FAILURES ==============================_______________________ t________ def test_read_properties(): lines = DATA.strip().splitlines()> grids = list(iter_grids_from_csv(lines))tests\test_read_properties.py:32:_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _lines = ['Main Grid,48,44', '2nd Grid,24,21', '3rd Grid,24,null'] def iter_grids_from_csv(lines): for fields in csv.reader(lines):> yield parse_grid_data(fields)tests\test_read_properties.py:27:_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _fields = ['3rd Grid', '24', 'null'] def parse_grid_data(fields): ...
Read now
Unlock full access