Changes between Version 53 and Version 54 of pyrunner
- Timestamp:
- 01/21/25 13:18:16 (7 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pyrunner
v53 v54 134 134 If your test() writes messages to stderr eg "all is going well", you may get interesting messages. For instance {{{Failed to execute: ... caused by PythonError: INFO: all is going well}}} 135 135 }}} 136 137 == resource files, log files 138 resource files are usually relative to the package. So if your resource is "mydir/pic.jpg" and your module is "tudelft.utilities" then the file is in "tudelft/utilities/mydir/pic.jpg". The working directory is usually set to the root of the package directory which is the directory {{{lib/python3.8/site-packages}}} inside your virtual environment. Log files the same, a file "mydir/test.log" refers to a test.log file in that same directory. 139