All,

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.

The guide shows the commands...

     % cd tests
     % ./run_tests

This should look like the following for the Win32 environment.

     C:\Users\{yourusernamehere}\chirp.hg> cd tests
     C:\Users\{yourusernamehere}\chirp.hg\tests> python run_tests

This runs but results in the following error...

     IOError: [Errno 2] No such file or directory: 'logs/verbose'

The solution to this error is to create a directory under tests called "logs".

     C:\Users\Root\chirp.hg\tests> mkdir logs


Jim