tests/subfiles.py

changeset 37
e46fa477007b
parent 26
7c263b864371
child 54
0c686d10eb49
equal deleted inserted replaced
36:2753aad79678 37:e46fa477007b
4 from pathlib import Path 4 from pathlib import Path
5 from configparser import ConfigParser 5 from configparser import ConfigParser
6 ini_path = Path(dirname(__file__)) / 'library-standards.ini' 6 ini_path = Path(dirname(__file__)) / 'library-standards.ini'
7 library_standards = ConfigParser() 7 library_standards = ConfigParser()
8 8
9 with open(ini_path) as file: 9 with ini_path.open() as file:
10 library_standards.read_file(file) 10 library_standards.read_file(file)
11 11
12 def determinant_test(model): 12 def determinant_test(model):
13 ''' 13 '''
14 Checks all subfile references for matrices with rows or columns all 14 Checks all subfile references for matrices with rows or columns all

mercurial