()
| 23 | |
| 24 | @pytest.fixture |
| 25 | def context(): |
| 26 | return ( |
| 27 | ContextBuilder(AzureDevOpsPlugin()) |
| 28 | .with_connection(token='token') |
| 29 | .with_scope_config(deployment_pattern='deploy', |
| 30 | production_pattern='prod') |
| 31 | .with_scope('johndoe/test-repo', url='https://github.com/johndoe/test-repo') |
| 32 | .build() |
| 33 | ) |
| 34 | |
| 35 | |
| 36 | def test_builds_stream(context): |
nothing calls this directly
no test coverage detected