Lenormand Julien

Results 14 comments of Lenormand Julien

I had the same problem : fbs was failing because PyInstaller was failing due to a '-' file not found. I added logging to PyInstaller\utils\misc.py:123 with > print("nm=%r, fnm=%r, typ=%r"...

I've had the same problem many times. The `robot.api.logger` is not thread-safe, you should not call it from different threads, only the MainThread. I'm considering creating a monkeypatch to add...

I don't recall where I read about it, but I was envious of Java, until now !

Usually, you can embed "resources" (files that are not Python) in your bundles. I never used PyInstaller directly (only indirectly). Would [`--add-data`](https://pyinstaller.org/en/v4.2/usage.html#what-to-bundle-where-to-search) work for you ? > Additional non-binary files...

The PR [!4610 ](https://github.com/astral-sh/uv/pull/4610) by @idlsoft has not been updated since a few months, and now has merge conflicts. I am too interested in this feature : I have a...

In the Dockerfile I copied the member's `pyproject.toml` and the global `uv.lock`, then `RUN uv sync --frozen -no-dev`, and it installed only the member's dependencies (using information from the lockfile)....

@oelhammouchi look at the code I wrote for `with_copy_file_to_container`, it is just one method that you can add in your project.

I have found this remark in a PR : https://github.com/testcontainers/testcontainers-python/pull/392#discussion_r1390988566 Indeed, this PR was not the right place to do it, but to implement it in a new one now...

Here are the two options I use when running the CLI : ``` --model-name-prefix simulator_server -D packageName=simulator_server ``` I'm still confused what they both mean. I put the same value...