(self, **kwargs)
| 86 | attempts = 0 |
| 87 | |
| 88 | def create_crew(self, **kwargs) -> None: |
| 89 | create_calls.append(kwargs) |
| 90 | FakeDeployCommand.attempts += 1 |
| 91 | if FakeDeployCommand.attempts == 1: |
| 92 | raise AuthenticationRequiredError |
| 93 | |
| 94 | class FakeAuthenticationCommand: |
| 95 | def login(self) -> None: |
no test coverage detected