Has anyone ever written integration tests that exp...
# plugins
a
Has anyone ever written integration tests that expose Python interpreters other than the one actually running pytest to the test sandbox? I'm trying to test the rules I've written handle different python and dbt versions for the dbt backend.
h
There are many Pants tests that do this, if I'm understanding your question correctly.
Grep for the
@skip_unless_
marker to find some
a
Ah, found the
PythonRuleRunner
which has what I need, thanks!