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

Don't style text when output terminal is not interactive #679

Closed
pavelzw opened this issue Mar 11, 2025 · 3 comments · Fixed by #681
Closed

Don't style text when output terminal is not interactive #679

pavelzw opened this issue Mar 11, 2025 · 3 comments · Fixed by #681
Labels
bug Something isn't working

Comments

@pavelzw
Copy link

pavelzw commented Mar 11, 2025

When writing the report to a file, the styling doesn't get removed and results in ascii escape sequences in the file:

tach report my_module > report.txt

opening this in my IDE:

Image

I would expect something like this instead (also without the warning, xref #676):

Image

@emdoyle emdoyle added the bug Something isn't working label Mar 11, 2025
@emdoyle
Copy link
Member

emdoyle commented Mar 11, 2025

@pavelzw I'll fix this! We have functions to detect this but they are scattered across the Python/Rust boundary. This output is entirely rendered in Rust I believe, so should be a straightforward fix.

It'll take some time to work through the rest of the formatting/stdout issues you've raised but they seem reasonable. Could I ask about your use case? I'd love to learn more about how you're using Tach's output so that we can build in that direction :)

@pavelzw
Copy link
Author

pavelzw commented Mar 11, 2025

Basically i'm trying to build a tool that checks within my project that i only use certain external dependencies in certain submodules

allow:
  # only allow importing the `logging` module in the following submodules
  logging:
    - my_project.log
    # The below directories should be migrated in the near future.
    # We should remove each directory as they are migrated.
    - my_project.legacy
   # ...

deny:
  # Packages that exist under this tag will be denied usage
  # in precisely these modules.
  pandas:
    - my_project.new

The idea was to leverage tach report --output json (#678) and then just ensure all of these requirements are met.
But since #678 is not yet done, I planned to parse the output of tach report myself for now.

@emdoyle
Copy link
Member

emdoyle commented Mar 11, 2025

Ok I see! I just made the changes to fix styling in the report, this will merge and release later today. Note that the paths in the non-interactive report will be absolute.

Your actual use-case is something that Tach will support first-class very soon. Do you have a strong preference to define these rules on the external dependencies vs. opt-in on each module? The most natural extensions for Tach config would be external_depends_on/external_cannot_depend_on.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants