Skip to content

Commit

Permalink
Improved tests
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoTrizio committed Dec 16, 2024
1 parent 2bd81f6 commit 3311f3f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mlcolvar/tests/test_cvs_committor.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from mlcolvar.cvs.committor.committor import test_committor
from mlcolvar.cvs.committor.utils import test_compute_committor_weights, test_Kolmogorov_bias
from mlcolvar.core.loss.committor_loss import test_smart_derivatives


if __name__ == "__main__":
test_committor()
test_smart_derivatives()
test_Kolmogorov_bias()
test_smart_derivatives()
test_compute_committor_weights()
2 changes: 2 additions & 0 deletions mlcolvar/tests/test_cvs_supervised_tda.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from mlcolvar.cvs.supervised.deeptda import test_deeptda_cv
from mlcolvar.core.loss.tda_loss import test_tda_loss

if __name__ == "__main__":
test_deeptda_cv()
test_tda_loss()
6 changes: 6 additions & 0 deletions mlcolvar/tests/test_data_graph.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from mlcolvar.data.graph.atomic import test_atomic_number_table
from mlcolvar.data.graph.neighborhood import test_get_neighborhood

if __name__ == '__main__':
test_atomic_number_table()
test_get_neighborhood()

0 comments on commit 3311f3f

Please sign in to comment.