Skip to content

Commit

Permalink
debug environment variable paths
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Mar 21, 2024
1 parent 339ee36 commit b18465d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/docker_yaml_conversion_specification_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ def test_run_conversion_from_yaml_variable(self):

yaml_string = "".join(yaml_lines)
os.environ["NEUROCONV_YAML"] = yaml_string
os.environ["NEUROCONV_DATA_PATH"] = DATA_PATH
os.environ["NEUROCONV_OUTPUT_PATH"] = OUTPUT_PATH
os.environ["NEUROCONV_DATA_PATH"] = str(DATA_PATH)
os.environ["NEUROCONV_OUTPUT_PATH"] = str(OUTPUT_PATH)

deploy_process(
command=(
Expand Down

0 comments on commit b18465d

Please sign in to comment.