Skip to content

Commit

Permalink
Move test files to separate folder
Browse files Browse the repository at this point in the history
  • Loading branch information
PointlessUser committed May 14, 2024
1 parent 34ce798 commit b25b8f6
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
File renamed without changes
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion PyTests/test_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def test_print_image():

# returns a base64 encoded image
def get_input():
return getInputImg(os.path.join(THIS_DIR, "coconut.jpg"))
return getInputImg(os.path.join(THIS_DIR, "./test_files/coconut.jpg"))


# returns a base64 encoded image
Expand Down
4 changes: 2 additions & 2 deletions PyTests/test_spreadsheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,11 @@ def test_print_dataframe():

# returns a base64 encoded image
def get_csv():
return getSpreadsheetInput(os.path.join(THIS_DIR, "csvFile.csv"))
return getSpreadsheetInput(os.path.join(THIS_DIR, "./test_files/csvFile.csv"))


def get_xlsx():
return getSpreadsheetInput(os.path.join(THIS_DIR, "xlsxFile.xlsx"), xlsx=True)
return getSpreadsheetInput(os.path.join(THIS_DIR, "./test_files/xlsxFile.xlsx"), xlsx=True)


# returns a base64 encoded image
Expand Down

0 comments on commit b25b8f6

Please sign in to comment.