Skip to content

Commit

Permalink
Skip both train and generate
Browse files Browse the repository at this point in the history
  • Loading branch information
WardLT committed Jan 14, 2025
1 parent cabeb71 commit f7e6dd3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def test_load_model(load_denoising_model, load_size_gnn_model):
assert load_size_gnn_model.__class__.__name__ == 'SizeClassifier'


@mark.parametrize('finetune', [True, False])
@mark.slow
@mark.parametrize('finetune', [True, False])
def test_training(file_dir, tmpdir, finetune):
# Load some examples from disk
examples = []
Expand All @@ -67,6 +67,7 @@ def test_training(file_dir, tmpdir, finetune):
@mark.parametrize('filename', ['geom_difflinker.ckpt', 'geom_difflinker_given_anchors.ckpt'])
@mark.parametrize('n_atoms', [8])
@mark.parametrize('n_samples', [1, 3])
@mark.slow
def test_sampling_num_atoms(n_atoms, example_template, n_samples, file_dir, filename, tmp_path):
# prompts = "1,5" if "prompts" in filename else None ####Give 1st and 5th atom of FRAGMENT-only molecule
# (i.e., we can keep track of atom indices in fragment SDF/XYZ etc files)
Expand Down

0 comments on commit f7e6dd3

Please sign in to comment.