From eb3b801285e645acda7426b29f45d63145d71c69 Mon Sep 17 00:00:00 2001 From: hyunp2 <42776897+hyunp2@users.noreply.github.com> Date: Sun, 3 Dec 2023 23:56:35 -0600 Subject: [PATCH] Update test_generator.py --- tests/test_generator.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tests/test_generator.py b/tests/test_generator.py index fca6fb82..07c30d66 100644 --- a/tests/test_generator.py +++ b/tests/test_generator.py @@ -40,15 +40,3 @@ def test_training(): def test_sampling_num_atoms(n_atoms): run_generator(n_atoms=n_atoms) -@mark.parametrize('n_atoms', [3]) -@mark.parametrize('node', ['CuCu', 'ZnZn', 'ZnOZnZnZn']) -@mark.parametrize('n_samples', [1, 3]) -def test_sampling_num_atoms(n_atoms, node, n_samples): - run_generator(n_atoms=n_atoms, node=node, n_samples=n_samples) - -@mark.parametrize('nodes', [['CuCu'], ['CuCu', 'ZnZn']]) -def test_fragmentation(nodes): - # fragmentation(nodes) - # process_fragments(nodes) - fragment_mof_linkers(nodes) -