Skip to content

Commit

Permalink
Use -C and --directory for pyproject.toml directory path (#213)
Browse files Browse the repository at this point in the history
Update Poe to use args -C and --directory to find the path to the directory
with pyproject.toml. This better aligns with Poetry (which also uses -C and
--directory). 

Keep the --root argument as a hidden parameter for backwards compatibility.
  • Loading branch information
jeraymond committed Apr 21, 2024
1 parent 583e12b commit 57ea176
Show file tree
Hide file tree
Showing 11 changed files with 57 additions and 30 deletions.
2 changes: 1 addition & 1 deletion docs/global_options.rst
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ Run poe from anywhere

By default poe will detect when you're inside a project with a pyproject.toml in the
root. However if you want to run it from elsewhere then that is supported by using the
:bash:`--root` option to specify an alternate location for the toml file. The task will
:bash:`-C` option to specify an alternate location for the toml file. The task will
run with the given location as the current working directory.

In all cases the path to project root (where the pyproject.toml resides) will be
Expand Down
21 changes: 11 additions & 10 deletions docs/guides/help_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,21 @@ This help text will be displayed alongside the task name in the list of configur
$ poe --help
Poe the Poet - A task runner that works well with poetry.
version 0.19.0
version 0.25.1
USAGE
poe [-h] [-v | -q] [--root PATH] [--ansi | --no-ansi] task [task arguments]
poe [-h] [-v | -q] [-C PATH] [--ansi | --no-ansi] task [task arguments]
GLOBAL OPTIONS
-h, --help Show this help page and exit
--version Print the version and exit
-v, --verbose Increase command output (repeatable)
-q, --quiet Decrease command output (repeatable)
-d, --dry-run Print the task contents but don't actually run it
--root PATH Specify where to find the pyproject.toml
--ansi Force enable ANSI output
--no-ansi Force disable ANSI output
-h, --help Show this help page and exit
--version Print the version and exit
-v, --verbose Increase command output (repeatable)
-q, --quiet Decrease command output (repeatable)
-d, --dry-run Print the task contents but don't actually run it
-C PATH, --directory PATH
Specify where to find the pyproject.toml
--ansi Force enable ANSI output
--no-ansi Force disable ANSI output
CONFIGURED TASKS
test Run the test suite
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ If no virtualenv is found then poe will run tasks without any special environmen
Run poe from anywhere
=====================

By default poe will detect when you're inside a project with a pyproject.toml in the root. However if you want to run it from elsewhere then that is supported by using the :sh:`--root` option to specify an alternate location for the toml file. The task will run with the given location as the current working directory.
By default poe will detect when you're inside a project with a pyproject.toml in the root. However if you want to run it from elsewhere then that is supported by using the :sh:`-C` option to specify an alternate location for the toml file. The task will run with the given location as the current working directory.

In all cases the path to project root (where the pyproject.toml resides) will be available as :sh:`$POE_ROOT` within the command line and process. The variable :sh:`$POE_PWD` contains the original working directory from which poe was run.

Expand Down
16 changes: 14 additions & 2 deletions poethepoet/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,26 @@ def build_parser(self) -> "ArgumentParser":
)

parser.add_argument(
"--root",
"-C",
"--directory",
dest="project_root",
metavar="PATH",
type=str,
default=None,
help="Specify where to find the pyproject.toml",
)

# legacy --root parameter, keep for backwards compatability but help output is
# suppressed
parser.add_argument(
"--root",
dest="project_root",
metavar="PATH",
type=str,
default=None,
help=argparse.SUPPRESS,
)

ansi_group = parser.add_mutually_exclusive_group()
ansi_group.add_argument(
"--ansi",
Expand Down Expand Up @@ -206,7 +218,7 @@ def print_help(
(
"<h2>USAGE</h2>",
f" <u>{self.program_name}</u>"
" [-h] [-v | -q] [--root PATH] [--ansi | --no-ansi]"
" [-h] [-v | -q] [-C PATH] [--ansi | --no-ansi]"
" task [task arguments]",
)
)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def test_customize_config_name_with_json(run_poe, projects, capsys):
assert result.stderr == ""

result = run_poe(
"--root",
"-C",
str(projects["custom_config"]),
"hello",
config_name="tasks.json",
Expand Down
16 changes: 16 additions & 0 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,22 @@ def test_call_no_args(run_poe):
assert "CONFIGURED TASKS\n echo" in result.capture, "echo task should be in help"


def test_call_with_directory(run_poe, projects):
result = run_poe("--directory", str(projects["example"]), cwd=".")
assert result.code == 1, "Expected non-zero result"
assert result.capture.startswith(
"Poe the Poet - A task runner that works well with poetry."
), "Output should start with poe header line"
assert (
"\nResult: No task specified.\n" in result.capture
), "Output should include status message"
assert (
"CONFIGURED TASKS\n echo It says what you say"
in result.capture
), "echo task should be in help"


# Test legacy --root parameter (replaced by -C, --directory)
def test_call_with_root(run_poe, projects):
result = run_poe("--root", str(projects["example"]), cwd=".")
assert result.code == 1, "Expected non-zero result"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cmd_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def test_cmd_task_with_with_glob_arg_and_cwd(

def test_cmd_with_capture_stdout(run_poe_subproc, projects, poe_project_path):
result = run_poe_subproc(
"--root",
"-C",
str(projects["cmds"]),
"meeseeks",
project="cmds",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_envfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_task_envfile_and_default(run_poe_subproc):

def test_multiple_envfiles(run_poe_subproc, projects):
result = run_poe_subproc(
f'--root={projects["envfile/multiple_envfiles"]}', "show_me_the_vals"
f'-C={projects["envfile/multiple_envfiles"]}', "show_me_the_vals"
)

assert (
Expand Down
16 changes: 7 additions & 9 deletions tests/test_includes.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_run_task_not_included_from_toml_file(run_poe_subproc):

def test_docs_for_multiple_includes(run_poe_subproc, projects):
result = run_poe_subproc(
f'--root={projects["includes/multiple_includes"]}',
f'-C={projects["includes/multiple_includes"]}',
)
assert (
"CONFIGURED TASKS\n"
Expand All @@ -44,7 +44,7 @@ def test_docs_for_multiple_includes(run_poe_subproc, projects):

def test_running_from_multiple_includes(run_poe_subproc, projects):
result = run_poe_subproc(
f'--root={projects["includes/multiple_includes"]}',
f'-C={projects["includes/multiple_includes"]}',
"echo",
"Whirl!",
project="includes",
Expand All @@ -54,23 +54,21 @@ def test_running_from_multiple_includes(run_poe_subproc, projects):
assert result.stderr == ""

result = run_poe_subproc(
f'--root={projects["includes/multiple_includes"]}', "greet", "Whirl!"
f'-C={projects["includes/multiple_includes"]}', "greet", "Whirl!"
)
assert result.capture == "Poe => poe_test_echo Hello 'Whirl!'\n"
assert result.stdout == "Hello Whirl!\n"
assert result.stderr == ""

result = run_poe_subproc(
f'--root={projects["includes/multiple_includes"]}', "laugh"
)
result = run_poe_subproc(f'-C={projects["includes/multiple_includes"]}', "laugh")
assert result.capture == "Poe => poe_test_echo $ONE_LAUGH | tr a-z A-Z\n"
assert result.stdout == "LOL\n"
assert result.stderr == ""


def test_reference_peer_include(run_poe_subproc, projects):
result = run_poe_subproc(
f'--root={projects["includes/multiple_includes"]}', "reference_peer_include"
f'-C={projects["includes/multiple_includes"]}', "reference_peer_include"
)
assert (
result.capture
Expand All @@ -82,7 +80,7 @@ def test_reference_peer_include(run_poe_subproc, projects):

def test_docs_for_only_includes(run_poe_subproc, projects):
result = run_poe_subproc(
f'--root={projects["includes/only_includes"]}',
f'-C={projects["includes/only_includes"]}',
)
assert (
"CONFIGURED TASKS\n"
Expand Down Expand Up @@ -171,7 +169,7 @@ def test_monorepo_runs_each_task_with_expected_cwd(
assert result.stderr == ""

result = run_poe_subproc(
"--root",
"-C",
str(projects["monorepo/subproject_3"]),
"get_cwd_3",
cwd=projects["example"],
Expand Down
4 changes: 2 additions & 2 deletions tests/test_script_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def test_required_args(run_poe_subproc):

def test_script_task_bad_type(run_poe_subproc, projects):
result = run_poe_subproc(
f'--root={projects["scripts/bad_type"]}',
f'-C={projects["scripts/bad_type"]}',
"bad-type",
"--greeting=hello",
)
Expand All @@ -223,7 +223,7 @@ def test_script_task_bad_type(run_poe_subproc, projects):

def test_script_task_bad_content(run_poe_subproc, projects):
result = run_poe_subproc(
f'--root={projects["scripts/bad_content"]}',
f'-C={projects["scripts/bad_content"]}',
"bad-content",
"--greeting=hello",
)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_shell_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def test_interpreter_python(run_poe_subproc):

def test_bad_interpreter_config(run_poe_subproc, projects):
result = run_poe_subproc(
f'--root={projects["shells/bad_interpreter"]}',
f'-C={projects["shells/bad_interpreter"]}',
"bad-interpreter",
)
assert (
Expand All @@ -108,7 +108,7 @@ def test_bad_interpreter_config(run_poe_subproc, projects):

def test_global_interpreter_config(run_poe_subproc, projects):
result = run_poe_subproc(
f'--root={projects["shells/shell_interpreter_config"]}',
f'-C={projects["shells/shell_interpreter_config"]}',
"echo_python",
)
assert result.capture == "Poe => import sys\nprint(sys.version_info)\n"
Expand Down

0 comments on commit 57ea176

Please sign in to comment.