4 messages in com.googlegroups.pylons-discussRe: Testing pylons code on windows
FromSent OnAttachments
climbus27 Sep 2006 00:11 
James Gardner27 Sep 2006 07:01 
Tim Golden27 Sep 2006 07:36 
Tim Golden27 Sep 2006 07:40 
Subject:Re: Testing pylons code on windows
From:Tim Golden (tjgo@gmail.com)
Date:09/27/2006 07:36:20 AM
List:com.googlegroups.pylons-discuss

James Gardner wrote:

Hi

Did anybody run pylons tests on windows? I was trying but everything fails.

I do, and yes it fails!

I've just spent a couple of hours looking into it. Here I'm doing manually what the code does (apart from the export):

[... snip ...]

svn mkdir file://output/REPOS/ProjectName -m "New project ProjectName"

and I get an error:

svn: Unable to open an ra_local session to URL svn: Unable to open repository 'file://output/REPOS'

It's to do with file URLs on Win32. Specifying the whole path works:

svn mkdir file:///c:/temp/pylons/tests/test_webapps/output/REPOS/ProjectName - m "blah blah"

and possibly other options too. I can't see an option to do relative URLs on Windows, but I rather think I've done it in the past.

TJG