Tests test_feature_branch repos, on all branches.
()
| 66 | |
| 67 | @pytest.mark.asyncio |
| 68 | async def testFeatureBranch(): |
| 69 | """ |
| 70 | Tests test_feature_branch repos, on all branches. |
| 71 | """ |
| 72 | repoPath = prepareRepo("test_feature_branch") |
| 73 | graphServer = createCclsGraphServer() |
| 74 | analyzer = Analyzer(repoPath, graphServer, firstParentOnly=False) |
| 75 | async with graphServer: |
| 76 | analyzer.observer = GraphDumpAnalyzerObserver( |
| 77 | os.path.join(testDataRoot, "baseline/feature_branch"), |
| 78 | os.path.join(testDataRoot, "actualdump/feature_branch")) |
| 79 | await analyzer.analyze() |
| 80 | |
| 81 | |
| 82 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected