All,<br><br>I had a little trouble working my way through the Testing section of the CHIRP Development Process guide. This is what I had to do to proceed. I hope that this helps someone else.<br><br>The guide shows the commands...<br>
<br>     % cd tests<br>     % ./run_tests<br><br>This should look like the following for the Win32 environment.<br><br>     C:\Users\{yourusernamehere}\chirp.hg&gt; cd tests<br>     C:\Users\{yourusernamehere}\chirp.hg\tests&gt; python run_tests<br>
<br>This runs but results in the following error...<br><br>     IOError: [Errno 2] No such file or directory: &#39;logs/verbose&#39;<br><br>The solution to this error is to create a directory under tests called &quot;logs&quot;.<br>
<br>     C:\Users\Root\chirp.hg\tests&gt; mkdir logs<br><br><br>Jim<br><br>