Skip to content

Commit

Permalink
remove default restuls_dir for psimulate run; change it for psimulate…
Browse files Browse the repository at this point in the history
… test
  • Loading branch information
stevebachmeier committed Oct 27, 2023
1 parent 22e679d commit 6b39075
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/vivarium_cluster_tools/psimulate/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ def psimulate():
"--result-directory",
"-o",
type=click.Path(file_okay=False),
default=paths.DEFAULT_OUTPUT_DIRECTORY,
show_default=True,
required=True,
help="The directory to write results to. A folder will be "
"created in this directory with the same name as the "
"configuration file.",
Expand Down Expand Up @@ -240,7 +239,7 @@ def expand(results_root, **options):
"--result-directory",
"-o",
type=click.Path(file_okay=False),
default=f"{paths.DEFAULT_OUTPUT_DIRECTORY}/load_tests",
default=paths.DEFAULT_LOAD_TESTS_DIR,
callback=cli_tools.coerce_to_full_path,
)
@cli_tools.pass_shared_options(shared_options)
Expand Down
2 changes: 1 addition & 1 deletion src/vivarium_cluster_tools/psimulate/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from vivarium_cluster_tools import utilities as vct_utils
from vivarium_cluster_tools.psimulate import COMMANDS

DEFAULT_OUTPUT_DIRECTORY = "/mnt/team/simulation_science/costeffectiveness/results"
DEFAULT_LOAD_TESTS_DIR = "/mnt/team/simulation_science/priv/engineering/load_tests"


class InputPaths(NamedTuple):
Expand Down

0 comments on commit 6b39075

Please sign in to comment.