Changes between Version 44 and Version 45 of pyrunner
- Timestamp:
- 09/09/24 19:53:10 (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pyrunner
v44 v45 58 58 === Run all tests programatically 59 59 PythonVenv also has support to run unit tests with discovery. 60 Your java code is assumed to have ...Test.java files that are compiled into your zip file, If you use java2python, you can keep the src and test java code separate and use something like 60 61 {{{#!td style="background: #eef" 62 For discovery, test classes must have a filename ending on {{{Test.py}}} 63 }}} 64 65 66 67 If you use java2python, you can keep the src and test java code separate and use something like 61 68 {{{ 62 69 PyProgram tests = PyProgram.fromDirectories(Arrays.asList(src, test));