Changes between Version 24 and Version 25 of pyrunner


Ignore:
Timestamp:
08/21/24 10:09:14 (8 months ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pyrunner

    v24 v25  
    8282
    8383=== 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.
     84Running 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.
    8585
    8686* make a venv and activate
    8787* pip install the zip
    8888* pip install [source:/unitpy/dist unitypy]
    89 
     89*