Skip to content

Commit

Permalink
fixed to thermocycler test
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyNASC20 committed Dec 20, 2024
1 parent 75155eb commit 7ad305b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions abr-testing/abr_testing/tools/test_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async def main(module: str) -> None:
"""Select test to be run."""
# Select test to run
# Set directory for tests
BASE_DIRECTORY = "\\userfs\\data\\testing_data\\"
BASE_DIRECTORY = "/userfs/data/testing_data/"
if not os.path.exists(BASE_DIRECTORY):
os.makedirs(BASE_DIRECTORY)
tests = modules[module]
Expand All @@ -89,7 +89,7 @@ async def main(module: str) -> None:
selected_test = int(input("Please select a test: "))
try:
function, description = tests[list(tests.keys())[selected_test]]
test_dir = BASE_DIRECTORY + f"{module}\\test{list(tests.keys())[selected_test]}"
test_dir = BASE_DIRECTORY + f"{module}/test{list(tests.keys())[selected_test]}"
print(f"{i}, {description}")
output_file = os.path.join(test_dir, "results.txt")
print(f"PATH: {output_file} ")
Expand Down

0 comments on commit 7ad305b

Please sign in to comment.