Changes between Version 24 and Version 25 of pyrunner
- Timestamp:
- 08/21/24 10:09:14 (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pyrunner
v24 v25 82 82 83 83 === Running/Debugging tests from commandline 84 Running and Debugging a unit test from the commandline is a bit more tricky because python can not find tests in a zip file. Nor can it find them after unzipping, because pip install removes some files. 84 Running and Debugging a unit test from the commandline is a bit more tricky because python can not find tests in a zip file. Nor can it find them after unzipping, because pip install removes some files. We suggest to use unitpy to work around these issues. 85 85 86 86 * make a venv and activate 87 87 * pip install the zip 88 88 * pip install [source:/unitpy/dist unitypy] 89 89 *