Skip to content

Commit ea074fa

Browse files
committed
test: added status output for all algorithms test
1 parent 676628e commit ea074fa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: tests/test_core_main.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -506,8 +506,11 @@ def test_exec_sedml_docs_in_combine_archive(self):
506506
self._assert_combine_archive_outputs(doc, out_dir)
507507

508508
def test_exec_sedml_docs_in_combine_archive_with_all_algorithms(self):
509-
for alg in gen_algorithms_from_specs(os.path.join(os.path.dirname(__file__), '..', 'biosimulators.json')).values():
509+
algorithms = gen_algorithms_from_specs(os.path.join(os.path.dirname(__file__), '..', 'biosimulators.json')).values()
510+
for i_alg, alg in enumerate(algorithms):
510511
alg_props = KISAO_ALGORITHM_MAP[alg.kisao_id]
512+
print('Testing algorithm {} of {}: {} ({})'.format(i_alg + 1, len(algorithms), alg_props.name, alg.kisao_id))
513+
511514
alg.changes = []
512515
for param_kisao_id, param_props in alg_props.parameters.items():
513516

0 commit comments

Comments
 (0)