-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Labels
kind: bugSomething isn't workingSomething isn't working
Description
What version of Turborepo are you using?
1.0.13
Describe the Bug
If I run yarn workspace py-package dev
then it runs as expected but if I run turbo run dev --scope=py-package
then the script is called but not all stdout is shown.
Expected Behavior
I'd expect my output for yarn workspace py-package dev
and turbo run dev --scope=py-package
to be similar.
To Reproduce
I know python is not supported but I could imagine this is relevant not just for python.
I created a temporary repo to easily illustrate the issue: https://github.com/mr-bjerre/tmp-turborepo-py-logging
The python script to be run looks like this
import logging
logging.basicConfig(level=logging.DEBUG)
print("Hello World1")
logging.info("logger: Hello World!")
print("Hello World2")
This might be related to #337
RazvanCristian
Metadata
Metadata
Assignees
Labels
kind: bugSomething isn't workingSomething isn't working