Monorepo nesting pdm run? Specifically pytests config. #2047
Answered
by
frostming
Jackbennett
asked this question in
Q&A
-
I've got a nice pdm setup like the example at https://github.com/pdm-project/pdm-example-monorepo
How would I get This hangs with no output;
e.g.
|
Beta Was this translation helpful? Give feedback.
Answered by
frostming
Jun 21, 2023
Replies: 1 comment 3 replies
-
i am afraid you are creating an infinite loop recursively. Try using a different script name for the composite task |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the try script can be fixed by changing it to
try.shell
in the all script you are calling a global
test
binary under /usr/bin, which is shown in the error message. it should be pdm run test ...