-
Notifications
You must be signed in to change notification settings - Fork 20
Format json with JQ_COLORS
#14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
fb9def0
d4d1806
feb9cc0
6b24db9
808b031
231277f
c1e4148
d7cea3c
f448745
843118e
0477e3f
39bd5ed
5a74355
3d715f5
1822bdb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -142,7 +142,7 @@ Note that the tests are meant to be used with jq 1.7.1. | |
| - [x] `getpath(path)` (passthrough) | ||
| - [x] `group`, `group_by(f)` | ||
| - [x] `gsub($regex; f)` (passthrough) | ||
| - [ ] `gsub($regex; f; $flags)` | ||
| - [x] `gsub($regex; f; $flags)` (passthrough) | ||
| - [x] `halt_error`, `halt_error($exit_code)` | ||
| - [x] `has($key)` (passthrough) | ||
| - [x] `implode` (passthrough) | ||
|
|
@@ -201,12 +201,37 @@ Note that the tests are meant to be used with jq 1.7.1. | |
| - [ ] `@format "string"` Format string | ||
| - [ ] `label $out | break $out` Break out | ||
| - [ ] `include "f"`, `import "f"` Include | ||
| - [ ] CLI options | ||
| - [x] `--help` / `-h` | ||
| - [x] `--null-input` / `-n` | ||
| - [ ] `--raw-input` / `-R` | ||
| - [x] `--slurp` / `-s` | ||
| - [x] `--compact-output` / `-c` | ||
| - [x] `--raw-output` / `-r` | ||
| - [x] `--raw-output0` | ||
| - [x] `--join-output` / `-j` | ||
| - [x] `--color-output` / `-C` | ||
| - [x] `--monochrome-output` / `-M` | ||
| - [ ] `-L directory` | ||
| - [ ] `--arg name value` | ||
| - [ ] `--rawfile name filename` | ||
| - [x] `--run-tests` | ||
| - [ ] `--run-tests [filename]` | ||
| - [x] `--` | ||
| - [ ] Combined short options | ||
| - [ ] More... | ||
| - Non-standard CLI options | ||
| - [x] `--jq` | ||
| - [x] `--lex` | ||
| - [x] `--no-builtins` | ||
| - [x] `--parse` | ||
| - [x] `--repl` | ||
| - [x] Run jqjq with jqjq | ||
| - [x] Bugs | ||
|
|
||
| ### jq's test suite | ||
|
|
||
| ``` | ||
| ```sh | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tried to rerun this, still 307, but i did notice that something seems strange with the output when running tests. Have a look at
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I just changed
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I get 308 on
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Huh made sure i had master also now, still 307, weird, some locale thing? anyways, that's for another time |
||
| $ ./jqjq --run-tests < ../jq/tests/jq.test | grep passed | ||
| 307 of 449 tests passed | ||
| ``` | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.