Julian Gilbey

Results 106 comments of Julian Gilbey

Ah, found the problem: https://github.com/omnilib/sphinx-mdinclude/blob/c467e81f0c2b89732debc57792738d124263f53f/docs/example.md?plain=1#L174 does not have spaces before the footnote links; it should read `Footnote [^1] and footnote [^key] with markdown.`

I just realised that the `qbot.waitUntil` timeout is in a flaky report, and is fine. But it is the weird `_text_edit` issue which is frequently happening, even when the `test_input_and_print`...

Update: I have located the source of the issue (though I don't understand why it is breaking); it is the test in `qtconsole/tests/test_inprocess_kernel.py` which causes the error. Running this test...

Hi @rayosborn, some of the test files contain only `pytest` tests, some contain only `unittest` tests and some contain a mixture. The GitHub workflow runs all the tests using `pytest`:...

For those trying to fix this issue, the case I reported in #6942 may be useful: ```python import pandas as pd # type: ignore df = pd.read_csv("data.csv") df_a = df.drop(columns=["a"])...

> So what do you think of this patch (against 2021.09.1) as an alternate solution? I think it would also handle Windows more cleanly than the current try/except/else. A fix...

I just tested 2024.12.1 (the version currently in Debian) with Python 3.13, and I am pleased to report that `tests/test_pubsub.py::test_client_worker` and `tests/test_worker.py::test_process_executor_kills_process` now both pass. However, `tests/test_steal.py::test_steal_twice` still fails.

@jacobtomlinson it fails consistently, both with an unshare chroot and with an lxc container; we run pytest on all failing tests up to five times in case they are flaky....

@jacobtomlinson Great, thanks! We are already skipping that test. Feel free to close this issue, then.

Amazing, thanks @Zybulon! Two extra patches I would make: 1. `pipes` is deprecated, so in `setupbase.py`, replace `import pipes` with `import shlex` and change `pipes.quote` to `shlex.quote`. (Later versions of...