I’m working on writing a Pants plugin that does de...
# general
c
I’m working on writing a Pants plugin that does dependency inference. I’m hitting an error that’s likely a result of a bug in my plugin. What’s the preferred way of viewing the traceback of the error that arises? Here’s what I see.
Copy code
11:35:39.86 [ERROR] 1 Exception encountered:

Engine traceback:
  in `dependees` goal
  in Map all targets to their dependents
  in Resolve direct dependencies of target - front_porch/modules/activities/_package_config.py
  in Inferring Python package config dependencies by analyzing source

ModuleNotFoundError: No module named 'ariadne'
I already tried running with
--level=debug
but it doesn’t seem to be relevant (?)
1
c
Oh, amazing, thanks!