Pull Request is not ready for merge.
Details
testPull Request is not ready for merge.
test
Pull Request is not ready for merge.
| Status | Path | Recommended reviewers | Escalated reviewers |
|---|---|---|---|
| 🟡 Pending | / | devtools |
| Check Name | Status | Conclusion | Details URL | Impact |\n| --- | --- | --- | --- | --- |
test one
test two
| import org.junit.jupiter.api.BeforeEach; | |
| import org.junit.jupiter.api.Test; | |
| import org.junit.jupiter.api.extension.ExtendWith; | |
| import org.mockito.Mock; | |
| import org.mockito.junit.jupiter.MockitoExtension; | |
| import reactor.core.publisher.Flux; | |
| import reactor.test.StepVerifier; | |
| import software.amazon.awssdk.services.location.LocationAsyncClient; | |
| import software.amazon.awssdk.services.location.model.Place; | |
| import software.amazon.awssdk.services.location.model.SearchPlaceIndexForTextResponse; |
| import org.junit.jupiter.api.BeforeEach; | |
| import org.junit.jupiter.api.Test; | |
| import org.junit.jupiter.api.extension.ExtendWith; | |
| import org.mockito.Mock; | |
| import org.mockito.junit.jupiter.MockitoExtension; | |
| import reactor.core.publisher.Flux; | |
| import reactor.test.StepVerifier; | |
| import software.amazon.awssdk.services.location.LocationAsyncClient; | |
| import software.amazon.awssdk.services.location.model.Place; | |
| import software.amazon.awssdk.services.location.model.SearchPlaceIndexForTextResponse; |
| import java.util.HashMap; | |
| import java.util.Map; | |
| import java.util.Scanner; | |
| public class NicknameToName { | |
| private static final Map<String, String> NICKNAME_TO_NAME_MAP; | |
| static { | |
| NICKNAME_TO_NAME_MAP = new HashMap<>(); |
I want to create a python CLI tool called 'clibuddy' that uses the 'click' library.
The CLI tool will wrap another command, and will either 1) print out detailed information of what failed or 2) attempt to fix errors any time the wrapped command fails with exit code > 0.
Structure of CLI app:
clibuddy --tool="tools/mytool.py" --explain mytool ...mytool_args
clibuddy --tool="tools/mytool.py" --fix mytool ...mytool_args