-
-
Notifications
You must be signed in to change notification settings - Fork 186
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
Add formatted numbers to JSON #298
Conversation
python/publish/publisher.py
Outdated
@@ -309,7 +350,7 @@ def publish_json(self, data: PublishData): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incompatible parameter type: Expected Union[os.PathLike[bytes], os.PathLike[str], bytes, str]
for 1st positional only parameter to call os.unlink
but got Optional[str]
.
(at-me in a reply with help
or ignore
)
Was this a good recommendation?
[ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ]
@@ -53,6 +53,7 @@ def create_settings(comment_mode=comment_mode_create, | |||
event: Optional[dict] = {'before': 'before'}, | |||
event_name: str = 'event name', | |||
json_file: Optional[str] = None, | |||
json_thousands_separator: str = punctuation_space, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unbound name: Name punctuation_space
is used but not defined in the current scope.
(at-me in a reply with help
or ignore
)
Was this a good recommendation?
[ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ]
commit='commit', | ||
reference_type='type', reference_commit='ref' | ||
), | ||
annotations=[Annotation( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unbound name: Name Annotation
is used but not defined in the current scope.
(at-me in a reply with help
or ignore
)
Was this a good recommendation?
[ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ]
runs=9, runs_succ=10, runs_skip=11, runs_fail=12, runs_error=1345, | ||
commit='commit' | ||
), | ||
stats_with_delta=UnitTestRunDeltaResults( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unbound name: Name UnitTestRunDeltaResults
is used but not defined in the current scope.
(at-me in a reply with help
or ignore
)
Was this a good recommendation?
[ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ]
This comment has been minimized.
This comment has been minimized.
Test Results (Test Files) 26 files ±0 4 errors 23 suites ±0 39m 21s ⏱️ ±0s For more details on these parsing errors, failures and errors, see this check. Results for commit 5c7a9f5. ± Comparison against base commit edf3cdc. ♻️ This comment has been updated with latest results. |
This comment has been minimized.
This comment has been minimized.
ce707c8
to
6fc2a15
Compare
Fixes #282.