fixed material.config of elastic tests to run with new error, currently to strict, needs fix
removed long spectral example test from list of daily tests
This commit is contained in:
parent
ad32aa3ced
commit
9f39405adf
|
@ -118,7 +118,7 @@ class Material():
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
me = []
|
me = []
|
||||||
for part in self.parts:
|
for part in self.parts:
|
||||||
print('doing',part)
|
print('doing '+part)
|
||||||
me += ['','#-----------------------------#','<%s>'%part,'#-----------------------------#',]
|
me += ['','#-----------------------------#','<%s>'%part,'#-----------------------------#',]
|
||||||
for section in self.data[part]['__order__']:
|
for section in self.data[part]['__order__']:
|
||||||
me += ['','[%s] %s'%(section,'-'*max(0,27-len(section))),'',]
|
me += ['','[%s] %s'%(section,'-'*max(0,27-len(section))),'',]
|
||||||
|
@ -263,4 +263,4 @@ def ex1():
|
||||||
print(mat)
|
print(mat)
|
||||||
mat.write(file='poop')
|
mat.write(file='poop')
|
||||||
mat.write(file='poop',overwrite=True)
|
mat.write(file='poop',overwrite=True)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue