Lines Matching full:not

34         if not issubclass(type, Enum):
191 Optional[str]: Skip reason, or `None` if test case should not be skipped
247 return 'not found' not in proc.stderr.decode('utf-8')
285 RuntimeError: If open or close is not a single character
341 if not match: # empty
360 if not 'name' in known.keys():
421 # Files should not be empty
427 return f'Number of lines in {test_csv} and {true_csv} do not match'
438 return f'Commented line found in {test_csv} at line {n} but not in {true_csv}'
440 return f'Commented line found in {true_csv} at line {n} but not in {test_csv}'
450 if not test_reader.fieldnames:
452 if not true_reader.fieldnames:
469 fail = not test_zero
471 fail = not isclose(test_val, true_val, rel_tol=rel_tol)
531 … output_str += f' not ok {index} - {spec.name}, {backend} ({test_case.elapsed_sec} s)\n'
597 …verbose (bool, optional): Print detailed output for all runs, not just failures. Defaults to False.
648 for file in output_files if not file.endswith('.csv')]
657 if not test_case.is_skipped() and test_case.stderr:
663 if not test_case.is_skipped():
672 if not test_case.is_skipped() and not test_case.status:
684 elif test_case.stdout and not suite_spec.check_allowed_stdout(test):
690 if not ref_csv.is_file():
693 if not ref_csv.is_file():
694 test_case.add_failure_info('csv', output=f'{ref_csv} not found')
695 elif not out_file.is_file():
696 test_case.add_failure_info('csv', output=f'{out_file} not found')
717 if not ref_cgn.is_file():
720 if not ref_cgn.is_file():
721 test_case.add_failure_info('cgns', output=f'{ref_cgn} not found')
722 elif not out_file.is_file():
723 test_case.add_failure_info('cgns', output=f'{out_file} not found')
737 if not ref_file.is_file():
740 if not ref_file.is_file():
741 test_case.add_failure_info('ascii', output=f'{ref_file} not found')
742 elif not out_file.is_file():
743 test_case.add_failure_info('ascii', output=f'{out_file} not found')
780 …verbose (bool, optional): Print detailed output for all runs, not just failures. Defaults to False.
815 print(f'{"" if subtest_ok else "not "}ok {i} - {test_case.category}')