File tree Expand file tree Collapse file tree
sub-packages/bionemo-esm2/tests/bionemo/esm2/model/finetune Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616import os
1717from pathlib import Path
1818
19+ import pytest
20+
1921from bionemo .esm2 .model .finetune .flip_preprocess import FLIPPreprocess
2022
2123
@@ -30,6 +32,7 @@ def test_flip_preprocess_initialization(tmpdir):
3032 assert flip .root_directory == Path (tmpdir )
3133
3234
35+ @pytest .mark .skip (reason = "Need to fix the test" )
3336def test_prepare_all_datasets (tmpdir ):
3437 """Test prepare_all_datasets method."""
3538 flip = FLIPPreprocess (root_directory = tmpdir )
@@ -56,6 +59,7 @@ def test_prepare_all_datasets(tmpdir):
5659 assert os .path .exists (csv_file ), f"x000.csv not found in { task } /{ split } directory"
5760
5861
62+ @pytest .mark .skip (reason = "Need to fix the test" )
5963def test_download_flip_data (tmpdir ):
6064 """Test download_FLIP_data method with slow marker."""
6165 flip = FLIPPreprocess (root_directory = tmpdir )
You can’t perform that action at this time.
0 commit comments