Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
BarzaH committed Dec 4, 2024
1 parent 08b52e9 commit d6b3fcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/schema/test_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_models(model_config_file):
# @pytest.mark.skip(reason="some problems with dataset downloading")
@pytest.mark.parametrize(["dataset_config_file"], datasets_config_files)
def test_datasets(dataset_config_file, tmp_path):
if os.path.isfile(dataset_config_file):
if os.path.isfile(dataset_config_file) and "empty_template.yaml" not in str(dataset_config_file):
with open(dataset_config_file, "r") as f:
dataset_config = DictConfig(yaml.safe_load(f))

Expand Down

0 comments on commit d6b3fcb

Please sign in to comment.