Michael Eliachevitch
Michael Eliachevitch
**Describe the bug** Since [black release v24.2](https://black.readthedocs.io/en/stable/change_log.html#id11) black ignores `pyproject.toml` files without a `[tool.black]` section. The bug arises because datamodel-codegen uses black's `black.find_project_root` [here](https://github.com/koxudaxi/datamodel-code-generator/blob/e4fa23a7270261b2fc195815d00039068b1c8197/datamodel_code_generator/__main__.py#L353-L354), but that now that ignores pyproject.toml...
_Originally posted by @0ctagon in https://github.com/nils-braun/b2luigi/issues/197#issuecomment-1529556967_: > One minor thing missing: there is no explicit message displayed when the user should input the certificate password (you just have to input...
In #197 an issue was discovered that gbasf2 downloads with the `--new` download the files into a different directory as what is expected by gbasf2 if the proxy group is...
_Originally posted by @schmitca in https://github.com/nils-braun/b2luigi/issues/181#issuecomment-1381928798_: > Dear @meliache, I am happy to test it. At the moment, the grid jobs with udst.root output fail, before download can be attempted....
We should only use the environment exported by the `env_script` and not be affected by it changing the current working directory, e.g. if the user uses a script that e.g....
The `get_job_status` call in the `Gbasf2Process` is rather costly and the gbasf2/dirac servers can only handle limited requests at a time. Therefore it would be good to create a job...
The gbasf2 submission and dataset download operations take a long time. Even when remote workers work in parallel, scheduling happens by default in serial. (Except when the `parallel_scheduling` [config option](https://luigi.readthedocs.io/en/stable/configuration.html)...
`create_output_dirs` is called explicitly for the `local` batch system [in `SendJobWorker._create_task_process`](https://github.com/nils-braun/b2luigi/blob/b3064cf261e95ce5542b749df8a26137bdb3cf75/b2luigi/batch/workers.py#L34). However, it's not called for the remote batch systems and the test batch system. I assume that for the...
I stupidly tried `get_all_output_file_names` (by @anselm-baur ) on a `WrapperTask` and got error ``` python-traceback Traceback (most recent call last): File "run_naf_reconstruction.py", line 86, in output_files_str = "\n ".join(task.get_all_output_file_names()) File...
### TODO's - [ ] avoid too many opened files error - [ ] add unit-tests? - [ ] use this for a while for real-life job submission to check...