Results 22 issues of Kai Zhang

Currently, if `tree artifacts` is not enabled, `bundletool.py` will be used to bundle an iOS app. In `bundletool.py`, before writing each entry into the zip file [the md5 hash of...

Before python3.11, when in a venv the zip path is calculated from prefix. In python3.11 the behavior is accidentally changed to calculating from the default prefix. This change will break...

awaiting review

# Bug report In python3.11, `getpath.py` calculates zip path with default prefix in a venv. Before python3.11, the zip path is calculated with prefix instead if in a venv. This...

type-bug

Hi, thanks for this great tool. We are writing a tracy python binding. Python has a [`PyEval_SetProfile`](https://docs.python.org/3/c-api/init.html#c.PyEval_SetProfile) API to set a profiler function in the interpreter. Every time a function...

enhancement

Currently, `assert_any_call` doesn't check the request body, only the params. Sometimes we want to check the request body. We cannot use `assert_called_with` because the request we want to check is...

## Feature Request #### Is your feature request related to a problem? Please describe. Thanks for this awesome tool. Currently, I have the following config: ```toml format = """ $cmd_duration\...

✨ enhancement

There are two cases where creating/updating credential by id is needed: 1. The credential id is needed in the pipeline script. 2. The description of the credential is an empty...

### Summary We have a workspace monorepo structured like this: ``` monorepo |- packages |- package_a |- package_b |- package_c ``` Package `package_a` depends on `package_b`, and `package_b`has no workspace...

enhancement

#### Problem Description Currently, we can load addons from script. But it's not very convient to distribute the addon by file. #### Proposal We can support load addons from python...

kind/feature

Thanks for this awesome tool! Some python projects have custom builtins defined. For example, we may add a `tr` function to builtins for localization: ```python # defined somewhere else. import...

configuration