Jeff Wright

Results 73 comments of Jeff Wright

It's not just 3.11, it's 3.10 as well. In the meantime I've removed support for >3.9 as of 1.9. Will figure this out later.

Still occuring in 1.9+. Worth some investigation.

Looking over the raw console output, what is happening seems to be due to live-logs enabled. This adds a new section at the beginning of the session `--- live log...

Sections occurring in this order: `live log sessionstart` `test session starts` `ERRORS` `live log collection` `live log setup` `live log call` (several of these in succession) `warnings summary` `PASSES` `captured...

Per Dave S: "having vim and emacs like bindings for navigating tabs and windows and searching would be a pro to see right up front for many terminal users I...

Perhaps use Pygments as a template?

Per @jsh: ``` I use vi-mode in bash (set -o vi), so I'll just play on the command line for a few minutes and jot down what I see myself...

Quoting @uranusjr from https://github.com/orgs/Homebrew/discussions/1405: > I am one of the maintainers of pip, the Python package installer. We are recently informed that Homebrew is currently using distutils.cfg to configure package...

In this case, there is a console script, defined in top-level `setup.py`: `entry_points={"console_scripts": ["aims-qa-tests=aims_qa_tests.__main__:main"]},` ....and then in `aims_qa_tests/__main__.py`, we have this: ``` def main(): """ Wrapper function to run pytest,...

Troubleshooting tip: `import os; print(os.getcwd())` In standard situation, it's at top level (e.g. ~/pytest-tui) In the modified situation, it's at a lower dir (~/toplevel/lowerlevel)