Henry Schreiner
Henry Schreiner
I think such a scenario would be looking for something like `git`. It would not be available in the local paths that are being passed, but would be available in...
That's embarrassing. Just don't look in history and pretend I wrote it correctly the first time. :) In my defense, I somehow thought the new-in-3.7 `text=True` parameter also implied `capture_output`,...
Hmm, so it looks like `shutil.which` expects executables to follow Window's `PATHEXT` and looks for `.exe`, `.bat`, and such. The tests make a no-extension executable, which `shutil` doesn't find but...
Closing in favor of #647.
This is a general problem when mixing pipx and nox, not just related to the action. If you run ```yaml - uses: actions/setup-python@v4 with: python-version: 3.11-dev - run: pipx run...
Will this deduplicate the slow step, though? I'd like: ```python @nox.session def build(session): ... # slow @nox.session(require=[build]) def test1(session): ... @nox.session(require=[build]) def test2(session): ... ``` To only build once. I...
Notify is backwards from what is useful for this sort of situation. I want to say `nox -s test1` and that will `build`, then run `test1`. Or I want to...
> Nox would need some concept of a DAG of tasks it needs to complete which, to my knowledge, it does not have Python 3.9's topological sorter (or a backport...
Would you like me to take a stab at it?
FYI, removing it is really easy, but untangling the monkey patched unittests is not (though I love the test granularity that allows, so not against it, just extra work for...