No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
c5c34d8
... +0 ...
556feed
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
348 | 348 | params.update({"labels": json.dumps(labels)}) |
|
349 | 349 | ||
350 | 350 | cm = self.docker._query( |
|
351 | - | "build", "POST", params=clean_map(params), headers=headers, data=data, |
|
351 | + | "build", |
|
352 | + | "POST", |
|
353 | + | params=clean_map(params), |
|
354 | + | headers=headers, |
|
355 | + | data=data, |
|
352 | 356 | ) |
|
353 | 357 | return self._handle_response(cm, stream) |
|
354 | 358 |
50 | 50 | ||
51 | 51 | @overload |
|
52 | 52 | def start( |
|
53 | - | self, *, timeout: aiohttp.ClientTimeout = None, detach: Literal[False] = False, |
|
53 | + | self, |
|
54 | + | *, |
|
55 | + | timeout: aiohttp.ClientTimeout = None, |
|
56 | + | detach: Literal[False] = False, |
|
54 | 57 | ) -> Stream: |
|
55 | 58 | pass |
|
56 | 59 | ||
57 | 60 | @overload # noqa |
|
58 | 61 | async def start( |
|
59 | - | self, *, timeout: aiohttp.ClientTimeout = None, detach: Literal[True], |
|
62 | + | self, |
|
63 | + | *, |
|
64 | + | timeout: aiohttp.ClientTimeout = None, |
|
65 | + | detach: Literal[True], |
|
60 | 66 | ) -> bytes: |
|
61 | 67 | pass |
|
62 | 68 |
95 | 101 | return Stream(self.docker, setup, timeout) |
|
96 | 102 | ||
97 | 103 | async def _start_detached( |
|
98 | - | self, timeout: aiohttp.ClientTimeout = None, tty: bool = False, |
|
104 | + | self, |
|
105 | + | timeout: aiohttp.ClientTimeout = None, |
|
106 | + | tty: bool = False, |
|
99 | 107 | ) -> bytes: |
|
100 | 108 | if self._tty is None: |
|
101 | 109 | await self.inspect() # should restore tty |
Files | Coverage |
---|---|
aiodocker | 86.17% |
Project Totals (21 files) | 86.17% |
556feed
c5c34d8