tests/subfiles.py

changeset 43
d7c015d8c6c0
parent 26
7c263b864371
equal deleted inserted replaced
42:be50d98d3668 43:d7c015d8c6c0
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 open(str(ini_path)) 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