The current tests in publish should test the newly built wheel, but actually they run from src/ folder.
Tests now fail because:
Before: on the running tests, src/pydp/_pydp.so is used.
Now: In the new build with cibuildwheel, the build happens in Docker, so src/pydp/_pydp.so is not present
Anyway the tests don't test wheel, which they should test, let's for now disable them, to release a new RC candidate version and then let's fix later.
The current tests in publish should test the newly built wheel, but actually they run from
src/
folder.Tests now fail because: Before: on the running tests,
src/pydp/_pydp.so
is used. Now: In the new build withcibuildwheel
, the build happens in Docker, sosrc/pydp/_pydp.so
is not presentAnyway the tests don't test wheel, which they should test, let's for now disable them, to release a new RC candidate version and then let's fix later.