Replies: 1 comment 3 replies
|
It parses every import and creates a graph of modules. The test will run if the module is imported at any point as long as it's in the module graph of the test file. |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
How does it determine if a test is affected by a code change? Does the code change need to be directly in the given test? Does it look at the
imports? Does it look at the code coverage files to determine which tests run through which code?All reactions