Tsvika Shapira
Tsvika Shapira
I have created a subclass of joblib.Parallel that uses the 'tqdm' package for the progress bar. I find this method more comfortable - the updates are rapid, but uses `\r`...
right now, using click.Path() allows a user to set the following params: `exists=True`: aborts if path does not exists `dir_okay=False`: aborts if path (exists and) is a dir `file_okay=False`: aborts...
Hi @tsvikas thank you for interest and effort. I tried to reproduce same steps, and cache files were deleted as expected. Yes it would be good to rename all defaults...
your site looked weird having a wrong date order. found out it was a typo.
`left-sum-right-margin` was set to the correct size: left + right, i.e. `page.margin * 2` the wrong value created premature newlines in the connection box. now it can span the full...
raw text output from `git --no-pager diff ...` ``` diff --git a/.gitignore b/.gitignore index 2659310..5e94189 100644 --- a/.gitignore +++ b/.gitignore @@ -61,3 +61,4 @@ venv/ # specific to this project:...
### Actual Situation when a task fails, copier raises `subprocess.CalledProcessError`. ### Desired Situation raise a specific exception, such as TaskFailed this will allow user or external tools that run copier...
## Summary This PR adds Fish shell integration support to shell_gpt, implementing the functionality requested in issue #447. ## Changes - **Fish shell integration code**: Added Fish shell integration with...
## Problem The current summary format double-counts failures by adding test-level failures to subtest-level failures. **Scenario:** Running 3 tests: - Test A: no subtests, fails - Test B: 3 subtests,...
Location: https://docs.pytest.org/en/stable/how-to/subtests.html#subtests The documentation shows: ```pytest $ pytest -q test_subtest.py uuuuuF [100%] ``` where all the `u` characters are green (passing). Actual behavior: Running the example produces mixed results -...