dealii: flake8 fixes

This commit is contained in:
Denis Davydov 2016-07-11 10:56:57 +02:00
parent 84afaf385f
commit f14cd67446

View File

@ -195,7 +195,8 @@ def install(self, spec, prefix):
cmake('.', *options) cmake('.', *options)
make() make()
if self.run_tests: make("test") if self.run_tests:
make("test")
make("install") make("install")
# run some MPI examples with different solvers from PETSc and Trilinos # run some MPI examples with different solvers from PETSc and Trilinos
@ -220,7 +221,8 @@ def install(self, spec, prefix):
print('============= Step-18 ===============') print('============= Step-18 ===============')
print('=====================================') print('=====================================')
# list the number of cycles to speed up # list the number of cycles to speed up
filter_file(r'(end_time = 10;)', ('end_time = 3;'), 'step-18.cc') filter_file(r'(end_time = 10;)', ('end_time = 3;'),
'step-18.cc')
if '^petsc' in spec and '^metis' in spec: if '^petsc' in spec and '^metis' in spec:
cmake('.') cmake('.')
make('release') make('release')