How can I call an external build script and have IntelliJ parse the errors?
Hello. I am not sure this is the correct category, but I'm trying to do something that seems pretty simple and I just don't know where to look.
I'm using IntelliJ IDEA for Python development, among other langages. I have a makefile with a "make check" command that runs some external tools and returns results like:
./out/production/abc/nodes/tasks.py:7:1: F401 'exceptions' imported but unused
./out/production/abc/nodes/tests/test_tasks.py:5:1: F401 'building_backends' imported but unused
./out/production/abc/nodes/tests/test_tasks.py:5:1: F401 'clusters' imported but unused
Can Intellij run this script when I say "make" and parse the results to highlight the lines with errors?
Thanks,
Devin
请先登录再写评论。