Joao Coelho
Joao Coelho
Re **1.** above, I actually think it should default to `True` (as is now) because that's the default value in Python 3.8 and if this package is to be a...
**Note:** At this point, this fix is not 100% functional. The existing test cases pass (there seem to be no breaking changes), but the new functionality is either not working...
Duh.. you were right. Fixed test cases and things should be good now. SeleniumLibrary [PR #1244](https://github.com/robotframework/SeleniumLibrary/pull/1244) depends on this fix for Travis CI to pass. Note: Wasn't sure whether or...
Note: Another way to check that the DOM is _not_ there, would be to add `LOG 4.1:14 REGEXP: (?i)^(?!
That didn't work b/c [here](https://github.com/robotframework/statuschecker/blob/7b59e30bbddf7740a010a14da61c3a4e99c6bc2f/robotstatuschecker.py#L99) we have ``` def _get_status(self, doc): return 'FAIL' if 'FAIL' in doc else 'PASS' ``` Which returns `FAIL` if we have `LOG 4.1:14 FAIL The...
This issue manifested itself when the test case status was different than the log status. Ex. Log status = `FAIL`, but test case is `PASS` or the other way around....
> There's no log level `PASS` Right, my bad on the previous comment. These test cases were name appropriately: - `Test case PASS log INFO` - `Test case FAIL log...
I found this useful. Copy/paste some unformatted text and then select the portions that are code and run this command. Way easier that typing the ` ``` ` at top...
The current behavior is that you have to add the option `show_default=False` even if there's no default. Something like ```python @app.command() def my_cmd(name: Annotated[str, typer.Option(help='This is the help.', show_default=False]): ......
Note: I understand that `openapi-python-client` uses `ruff`, but I also use `mypy` on the autogenerated code as it's part of a greater CI/CD workflow.