Skip to content

Commit

Permalink
final please
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlaltaf committed Jun 7, 2024
1 parent 0d9f37d commit 7ca5228
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/test_pytest.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
import_graph_from_pickle,
)
from tools.workflow import run_workflow
import os



def test_algorithm_attributes():
Expand Down Expand Up @@ -47,6 +49,15 @@ def test_algorithm_inherits_class():


def test_algorithm_workflow():
if not os.path.exists("output"):
os.makedirs("output")
if not os.path.exists("output/dataset"):
os.makedirs("output/dataset")
if not os.path.exists("output/data"):
os.makedirs("output/data")
if not os.path.exists("output/images"):
os.makedirs("output/images")

output_data_path = Path("./output/data/")
output_image_path = Path("./output/images/")
input_directory_path = Path("./tests/testing-dataset/")
Expand Down

0 comments on commit 7ca5228

Please sign in to comment.