Henry Schreiner
Henry Schreiner
In `pip` or `build`? `build` is easy, but `pip` wraps things in a way that it's hard to tell you are in a terminal.
Did something change? The problem is pytest is finding https://github.com/scikit-build/scikit-build-core/tree/main/tests/packages/dynamic_metadata/src/dynamic and trying to import it during the tests setup phase, and it can't (since it's just part of an example...
How is this with 0.8?
We don't have a "network" marker in scikit-build-core, but we could (should?) add one. It's currently pretty much synonymous with "isolated" at the moment. Though it does worry me -...
Ahh, yes, I might have missed the `--upgrade`, yes, that would access the network. @kloczek, could you try again with `-m "not isolated"`? I can add a `network` marker, but...
We are using venv for testing in scikit-build-core, while I used virtualenv in scikit-build. I might need to move scikit-build-core to virtualenv, too. I'd expect any use of `virtualenv` (the...
> Are these different packages `venv` is part of the Python standard library (sometimes broken out by distro packaging, but it's part of the stdlib), while `virtualenv` is a package...
``` %pytest -m "isolated" ``` Shouldn't that be `%pytest -m "not isolated"`? The isolated tests require a network to setup (they build from a collection of wheels downloaded from the...
That’s exactly what isolated does. So don’t you want `not isolated`?
Next release will have a `network` marker. But for now, “isolated” refers to setting up an isolated virtual environment and testing modules installed out of `.whl` archives downloaded from pypi....