Skip to content

Commit

Permalink
Replace renamed function pipeline_output_test in modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefanie08 committed Oct 31, 2024
1 parent 0a55eb6 commit dc762e2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/test_pipeline_raw_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os
import snakemake
import shutil
from oemof_b3.tools.testing_pipeline import get_repo_path, pipeline_file_output_test
from oemof_b3.tools.testing_pipeline import get_repo_path, pipeline_output_test
from oemof_b3.config import config

logger = config.add_snake_logger("data_processing")
Expand Down Expand Up @@ -80,4 +80,4 @@ def test_raw_dir():


def test_pipeline_raw():
pipeline_file_output_test(delete_switch, output_rule_list)
pipeline_output_test(delete_switch, output_rule_list)
4 changes: 2 additions & 2 deletions tests/test_pipeline_resources_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from oemof_b3.tools.testing_pipeline import (
get_repo_path,
install_with_extra,
pipeline_file_output_test,
pipeline_output_test,
)

# Delete data from test run of pipeline if True otherwise False
Expand Down Expand Up @@ -54,4 +54,4 @@


def test_pipeline_resources_tables():
pipeline_file_output_test(delete_switch, output_rule_list)
pipeline_output_test(delete_switch, output_rule_list)
4 changes: 2 additions & 2 deletions tests/test_pipeline_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os
from oemof_b3.tools.testing_pipeline import (
get_repo_path,
pipeline_folder_output_test,
pipeline_output_test,
)

# Delete data from test run of pipeline if True otherwise False
Expand Down Expand Up @@ -66,4 +66,4 @@ def output_rule_set(scenario):


def test_pipeline_results():
pipeline_folder_output_test(delete_switch, scenario_output_rule_list)
pipeline_output_test(delete_switch, scenario_output_rule_list)

0 comments on commit dc762e2

Please sign in to comment.