BUG - since I last pulled, base repo has test failures
Describe the bug Latest codebase, pulle down. Run pytest test_build.py is failing, and /schedule/test_core.py runs for 30 min and is still going?
I also tried running them all individually from vscode, got some more intermittent failures.
To Reproduce Latest codebase, pulle down. Run pytest
Expected behavior Tests to execute in full and pass
Screenshots


Desktop (please complete the following information):
- OS: Win 11
- Python 3.11
- pytest 2.15.6
Additional context Test failure for build:

Hmm, oh ye. Pass argument "--no-build" with the pytest call. Does that make it to go successfully? If not, I think you can ignore that 👍
I basically made that as a sanity check so that the package gets version dynamically when built (changed versioneer to setuptools_scm and the latter suggests to ignore _version.py). I'm not sure if that's no longer as necessary as every master merge goes to test PyPI anyways.
Perhaps I could change it the other way round: CI passes argument "--check-build" to Pytest and only then this sanity check test is run.
pylint: error: Unrecognized option found: no-build - not for me, but I see you've done a PR to fix this so will take a look
with new code, still getting:

but if it's ok to ignore I will for now
Ye, you can ignore it 👍 I'm thinking of removing that test altogether, or at least remove the command-line argument. The reason for it was a sanity check the version is generated but I'm not sure if it's fruitful anymore test setuptools_scm itself works correctly.
The PR has issues with pytest. It seems you cannot pass arguments to pytest argparser in built packages without hacks. I possibly change the package layout a bit in the future by putting tests outside the library code but I'll inform well in advance if/when I'm doing that.