Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Option to skip hooks #1127

Merged
merged 3 commits into from
Jun 13, 2022
Merged

Conversation

noirbizarre
Copy link
Member

@noirbizarre noirbizarre commented Jun 10, 2022

Pull Request Check List

  • A news fragment is added in news/ describing what is new.
  • Test cases added for changed code.

Describe what you have changed in this PR.

This PR is a proposal at implementing #948.
If provides 2 parameters:

  • --skip-hooks that will skip any hook (or pre/post script) involved in the execution
  • --skip which can take any arbitrary task or hook name(s) and skip it/them

Those 2 parameters have been added to the following commands

  • run
  • install
  • lock
  • build
  • init

The --skip can be used many times. The following commands are all equivalents

  • --skip=pre_task1,task2
  • --skip pre_task1,task2
  • --skip=pre_task1 --skip=task2
  • --skip pre_task1 --skip task2

The both options can be used together:

pdm run --skip-hooks --skip=taskn my-composite-task

noirbizarre added a commit to noirbizarre/pdm that referenced this pull request Jun 10, 2022
@frostming
Copy link
Collaborator

frostming commented Jun 10, 2022

Those 2 parameters have been added to the following commands

  • run
  • install
  • lock
  • build
  • init

That is not complete, the following commands also call hooks:

  • add
  • update
  • sync
  • remove
  • publish (new in 2.0)

Besides, can we merge the two options --skip-hooks and --skip into one, something like --skip=:all? And ideally, the hooks should also be able to control with env vars.

@noirbizarre
Copy link
Member Author

noirbizarre commented Jun 10, 2022

I'll add the option to those extra commands and I think documentation needs an update on this (they are not listen) or at least an explanation that signals does not match the commands but the actions executed by commands (if I understand well, install can trigger pre_lock and post_lock...). I'll try adding some lifecycle documentation somewhere (or update it if it already exists)

For the :all keyword, I'll do as well as :pre and :post with:

  • :all: skip all hooks
  • :pre: skip all pre hooks
  • :post: skip all post hooks

@frostming
Copy link
Collaborator

I'll try adding some lifecycle documentation somewhere (or update it if it already exists)

A Lifecycle documentation would be superb!

For the :all keyword, I'll do as well as :pre and :post with:

:all: skip all hooks
:pre: skip all pre hooks
:post: skip all post hooks

Yeah, I love the shortcuts

@frostming frostming added this to the Release 2.0 milestone Jun 11, 2022
@codecov-commenter
Copy link

codecov-commenter commented Jun 11, 2022

Codecov Report

Attention: Patch coverage is 97.97980% with 2 lines in your changes missing coverage. Please review.

Project coverage is 84.58%. Comparing base (4563185) to head (0dc1ed8).

Files with missing lines Patch % Lines
pdm/cli/options.py 86.66% 1 Missing and 1 partial ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##              dev    #1127      +/-   ##
==========================================
+ Coverage   84.36%   84.58%   +0.21%     
==========================================
  Files          79       80       +1     
  Lines        6958     7030      +72     
  Branches     1652     1663      +11     
==========================================
+ Hits         5870     5946      +76     
+ Misses        733      731       -2     
+ Partials      355      353       -2     
Flag Coverage Δ
unittests 84.36% <97.97%> (+0.21%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Collaborator

@frostming frostming left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@noirbizarre Thanks for your work on that feature. The code is of high quality and your Python skills are awesome. I've made some comments and improvement suggestions. Also, would you like to write a new documentation page about hooks?

@frostming frostming changed the title Feature/skip Feature: Option to skip hooks Jun 12, 2022
@Hnasar
Copy link
Contributor

Hnasar commented Jun 12, 2022

@frostming I've been meaning to add a bug for a while that it seems like the relevant hooks aren't called from pdm-pep517 (e.g. if you add a pre_build hook it doesn't get called from python -m build).

If hooks are a fundamental part of PDM (and not just a part of the CLI) would it make sense to move HookManager into pdm-pep517 and then import it here?

@frostming
Copy link
Collaborator

frostming commented Jun 12, 2022

@frostming I've been meaning to add a bug for a while that it seems like the relevant hooks aren't called from pdm-pep517 (e.g. if you add a pre_build hook it doesn't get called from python -m build).

If hooks are a fundamental part of PDM (and not just a part of the CLI) would it make sense to move HookManager into pdm-pep517 and then import it here?

I have a different opinion on that. Lifecycle scripts should be considered part of the package manager PDM, i.e. the frontend, rather than pdm-pep517, the backend. Like in node.js world, Yarn and npm support different lifecycle scripts. If you use other frontends like build, they may not call the hooks.

Besides, pdm-pep517, as a backend, only participates in the build process, it has nothing to do with install/lock/init.

@noirbizarre
Copy link
Member Author

noirbizarre commented Jun 13, 2022

@noirbizarre Thanks for your work on that feature. The code is of high quality and your Python skills are awesome. I've made some comments and improvement suggestions. Also, would you like to write a new documentation page about hooks?

👆🏼 Thanks 🙏🏼 🙏🏼

I applied changes/suggestions and rebased on the latest dev to resolve conflicts and squashed some commits to make history more consistent.
Do you want the hooks documentation in this PR or in a separate one (because it might take some times to write a good one and holding the PR might lead to more conflict solving).

Another question: do you me to add a pre_publish and post_publish hook ? Seems to be some legit and useful hooks

@frostming
Copy link
Collaborator

I applied changes/suggestions and rebased on the latest dev to resolve conflicts and squashed some commits to make history more consistent.

Thanks, hope my updates to the dev branch don't cause too much trouble. The CI seems passing.

Do you want the hooks documentation in this PR or in a separate one

A separate PR would be okay.

do you me to add a pre_publish and post_publish hook ? Seems to be some legit and useful hooks

Sure, go ahead for it.

@noirbizarre
Copy link
Member Author

noirbizarre commented Jun 13, 2022

I applied changes/suggestions and rebased on the latest dev to resolve conflicts and squashed some commits to make history more consistent.

Thanks, hope my updates to the dev branch don't cause too much trouble. The CI seems passing.

As soon as I understood dev has been rebased, no problem, just a rebase on my side too 👍🏼

Do you want the hooks documentation in this PR or in a separate one

A separate PR would be okay.

OK, let's go this way 👍🏼

do you me to add a pre_publish and post_publish hook ? Seems to be some legit and useful hooks

Sure, go ahead for it.

Great, I'll add them in another PR too

So the PR should be good to merge and I'll submit extra changes (pre_publish/post_publish and extended hooks documentation) in separate pull-requests 👍🏼

(And thanks for the reactivity, it's a pleasure contributing with quick feedback)

Copy link
Collaborator

@frostming frostming left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@noirbizarre
Copy link
Member Author

Great 🎊
I'll let you merge, I don't have the proper permissions to do so.

@frostming frostming merged commit f276147 into pdm-project:dev Jun 13, 2022
@noirbizarre noirbizarre deleted the feature/skip branch June 13, 2022 14:35
frostming pushed a commit that referenced this pull request Jun 15, 2022
* fix(scripts): allow pdm test command to receive path arguments

* feat(hooks): added a `--skip` option to skipp scripts and hooks (#1127)

fix #948

* feat(hooks): use PDM_SKIP_HOOKS environement variable as fallback for skip list
frostming pushed a commit that referenced this pull request Jun 15, 2022
* fix(scripts): allow pdm test command to receive path arguments

* feat(hooks): added a `--skip` option to skipp scripts and hooks (#1127)

fix #948

* feat(hooks): use PDM_SKIP_HOOKS environement variable as fallback for skip list
noirbizarre added a commit to noirbizarre/pdm that referenced this pull request Jun 22, 2022
frostming pushed a commit that referenced this pull request Jun 22, 2022
frostming pushed a commit that referenced this pull request Jun 24, 2022
* fix(scripts): allow pdm test command to receive path arguments

* feat(hooks): added a `--skip` option to skipp scripts and hooks (#1127)

fix #948

* feat(hooks): use PDM_SKIP_HOOKS environement variable as fallback for skip list
frostming pushed a commit that referenced this pull request Jun 24, 2022
* fix(scripts): allow pdm test command to receive path arguments

* feat(hooks): added a `--skip` option to skipp scripts and hooks (#1127)

fix #948

* feat(hooks): use PDM_SKIP_HOOKS environement variable as fallback for skip list
frostming pushed a commit that referenced this pull request Jun 28, 2022
* fix(scripts): allow pdm test command to receive path arguments

* feat(hooks): added a `--skip` option to skipp scripts and hooks (#1127)

fix #948

* feat(hooks): use PDM_SKIP_HOOKS environement variable as fallback for skip list
frostming added a commit that referenced this pull request Jun 28, 2022
* feat(core): Use tomllib on Python 3.11 (#1072)

* docs: 📝 Fix typo in `pip install pdm` description (#1061)

* Use tomllib on Python 3.11

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* news

* use a compatibility module

* missed one import

Co-authored-by: t106362512 <[email protected]>
Co-authored-by: hauntsaninja <>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* feat(core): Replace halo, click, and termcolor with rich (#1091)

* feat(core): Use `unearth` as the backend to find and download packages (#1096)

* perf(resolver): Speed up the resolution with lazy find_matches (#1098)

* Improve the output of installing packages

* Use confirm instead of ask

* feat(core): New command: pdm publish (#1107)

* Use rich handler for logging to stderr

* feat(scripts): added composite tasks support (#1117)

* feat(core): Add option to skip hooks (#1127)

* fix(scripts): allow pdm test command to receive path arguments

* feat(hooks): added a `--skip` option to skipp scripts and hooks (#1127)

fix #948

* feat(hooks): use PDM_SKIP_HOOKS environement variable as fallback for skip list

* feat(core): Support setup.py import (#1137)

* Update completion script

* fix(resolution): fix a bug that versions with local part can't be found and installed
Close #1093

* feat(core): forbid editable depenencies in project table (#1140)

* Make the error message more friendly

* doc: improve the docs about dependencies

* doc: add CLI reference doc

* doc: use asciiart as the program description

* chore: remove remaining artifacts from #1127 (#1152)

* Feature: complete lifecycle signals and documentation (#1147)

* feat(hooks): Added pre-publish hook

* refactor(hooks): dynamic signal/hooks listing avoiding double declaration

* feat(hooks): added (pre|post)_script and (pre|post)_run hooks

* doc(hooks): added lifecycle and hooks documentation

* review fix

* fix(tests): add and use the _echo fixture for cross-plateform and concise test echos

* refactor(hooks): automatically register the script handler for all hooks

* feat: Update pdm-pep517 to 1.0 (#1153)

* fix(scripts): merge the Script and Description field from listing (#1151)

* feat: fetch the candidate hashes concurrently (#1154)

* feat: fetch the candidate hashes concurrently

* add news

* Feat/respect-source-order (#1155)

* doc: restructure the docs about project metadata and build configuration

* parse pep 621 metadata to avoid build (#1156)

* feat: Remove the compatible support for pdm legacy metadata (#1157)

* fix(config): use platform standard directories for all PDM directories (#1161)

Fixes #1150

* fix(#1156): only trust parsing result when all are static

* New build configuration table

* chore: added a tox.ini file for easier local testing against all Python versions (#1160)

* feat(CLI): Yarn-like root scripts fallback (#1159)

* feat(hooks): added a post_use hook (#1163)

Co-authored-by: Shantanu <[email protected]>
Co-authored-by: t106362512 <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Axel H <[email protected]>
frostming pushed a commit that referenced this pull request Jun 28, 2022
* fix(scripts): allow pdm test command to receive path arguments

* feat(hooks): added a `--skip` option to skipp scripts and hooks (#1127)

fix #948

* feat(hooks): use PDM_SKIP_HOOKS environement variable as fallback for skip list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants