Re: [IronPython] Interim CI server for IronPython

2011-02-03 Thread Richard Nienaber
> create a new dependent build and use the Command Line runner to "build" the tests. As long as TestRunner returns an appropriate exit code, it will at least give an overall pass/fail, and the build log will show which individual ones failed. I had to use the MSBuild runner to build TestRunner an

Re: [IronPython] Bug Weekend prior to 2.7

2011-02-03 Thread Jeff Hardy
On Thu, Feb 3, 2011 at 3:56 PM, Daniel D. wrote: > Is there a analyse on how one can participate in bug sprint? > > Wouldn't want to go over same bugs others already reviewed. Do we mark each > bug with "yep, still a problem" comment? Do we make a list and post it > somewhere on shared Google docs

Re: [IronPython] Bug Weekend prior to 2.7

2011-02-03 Thread Brian Curtin
On Feb 3, 2011 4:56 PM, "Daniel D." wrote: > > Is there a analyse on how one can participate in bug sprint? > > Wouldn't want to go over same bugs others already reviewed. Do we mark each bug with "yep, still a problem" comment? Do we make a list and post it somewhere on shared Google docs spreads

Re: [IronPython] Bug Weekend prior to 2.7

2011-02-03 Thread Daniel D.
Is there a analyse on how one can participate in bug sprint? Wouldn't want to go over same bugs others already reviewed. Do we mark each bug with "yep, still a problem" comment? Do we make a list and post it somewhere on shared Google docs spreadsheet? Daniel On Feb 3, 2011 12:52 PM, "Dino Viehla

Re: [IronPython] Interim CI server for IronPython

2011-02-03 Thread Jeff Hardy
On Thu, Feb 3, 2011 at 1:40 PM, Richard Nienaber wrote: >> There's no reason that IronRuby can't be set up >> on teamcity.codebetter.com as well, but I'm not familiar with its >> build process. > I've added the IronRuby and DLR solutions and the DLR unit tests to the > build. It would be nice to

Re: [IronPython] Bug Weekend prior to 2.7

2011-02-03 Thread Dino Viehland
Me too From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Richard Nienaber Sent: Thursday, February 03, 2011 12:11 PM To: Discussion of IronPython Subject: Re: [IronPython] Bug Weekend prior to 2.7 > Anyone else willing and able to participate? I r

Re: [IronPython] Interim CI server for IronPython

2011-02-03 Thread Richard Nienaber
> There's no reason that IronRuby can't be set up on teamcity.codebetter.com as well, but I'm not familiar with its build process. I've added the IronRuby and DLR solutions and the DLR unit tests to the build. Still have to check wi

Re: [IronPython] IRC

2011-02-03 Thread Brian Curtin
On Thu, Feb 3, 2011 at 14:20, Brian Curtin wrote: > On Thu, Feb 3, 2011 at 13:35, Jeff Hardy wrote: > >> Is there any interest in an IronPython IRC channel? Is there already >> one in existence somewhere? I've never been a fan of IRC, personally, >> but if others are it would round out our commu

Re: [IronPython] IRC

2011-02-03 Thread Brian Curtin
On Thu, Feb 3, 2011 at 13:35, Jeff Hardy wrote: > Is there any interest in an IronPython IRC channel? Is there already > one in existence somewhere? I've never been a fan of IRC, personally, > but if others are it would round out our communication channels. > > - Jeff It looks like #ironpython

Re: [IronPython] Bug Weekend prior to 2.7

2011-02-03 Thread Richard Nienaber
> Anyone else willing and able to participate? I reckon I could find a couple of hours to help out. Count me in. Richard On Thu, Feb 3, 2011 at 7:35 PM, Jeff Hardy wrote: > I'd like to organize a bug weekend prior to the release of 2.7, to try > and get some low-hanging fruit dealt with. For t

Re: [IronPython] IRC

2011-02-03 Thread Daniel Jennings
I would sit in this IRC channel and occasionally ask questions and answer [easy] questions, so I'm in favor of an IronPython IRC channel :) -Original Message- From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Slide Sent: Thursday, February

Re: [IronPython] IRC

2011-02-03 Thread Richard Nienaber
I've found the #python and #ubuntu channels on Freenode invaluable in terms of real-time help so I think it would be a good idea. Richard On Thu, Feb 3, 2011 at 7:46 PM, Slide wrote: > On Thu, Feb 3, 2011 at 12:35 PM, Jeff Hardy wrote: > > Is there any interest in an IronPython IRC channel? Is

Re: [IronPython] IRC

2011-02-03 Thread Slide
On Thu, Feb 3, 2011 at 12:35 PM, Jeff Hardy wrote: > Is there any interest in an IronPython IRC channel? Is there already > one in existence somewhere? I've never been a fan of IRC, personally, > but if others are it would round out our communication channels. > > - Jeff >

[IronPython] IRC

2011-02-03 Thread Jeff Hardy
Is there any interest in an IronPython IRC channel? Is there already one in existence somewhere? I've never been a fan of IRC, personally, but if others are it would round out our communication channels. - Jeff ___ Users mailing list Users@lists.ironpyth

[IronPython] Bug Weekend prior to 2.7

2011-02-03 Thread Jeff Hardy
I'd like to organize a bug weekend prior to the release of 2.7, to try and get some low-hanging fruit dealt with. For those not familiar with the idea, a couple of days are set aside and as many people as possible go through the issue tracker verifying bugs and creating patches and test cases, and

[IronPython] Interim CI server for IronPython

2011-02-03 Thread Jeff Hardy
Hi all, There is an IronPython project set up on teamcity.codebetter.net (http://teamcity.codebetter.com/project.html?projectId=project110) to provide some interim continuous integration (CI) services for IronPython. It checks the git repo periodically and ensures that IronPython is building proper

Re: [IronPython] Loading a static lib a second time in hostedironpython

2011-02-03 Thread Brian Ashcroft
Thanks for the help, I discovered clr.AddReferenceToFileAndPath which does all the hard work off adding the path to the sys.path ;-) Thanks, Brian -Original Message- From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Jeff Hardy Sent: Thursda

Re: [IronPython] Loading a static lib a second time in hosted ironpython

2011-02-03 Thread Jeff Hardy
On Thu, Feb 3, 2011 at 9:28 AM, Lukas Cenovsky wrote: > It looks like IronPython cannot find your .dll. Check whether you have > MathHelpLib.dll along with all dependencies in your sys.path. ... which you can do from the host by calling engine.SetSearchPaths. - Jeff _

Re: [IronPython] Loading a static lib a second time in hosted ironpython

2011-02-03 Thread Lukas Cenovsky
It looks like IronPython cannot find your .dll. Check whether you have MathHelpLib.dll along with all dependencies in your sys.path. -- -- Lukás( On 3.2.2011 17:00, Brian Ashcroft wrote: Hello, I have an ironpython instance running within my application. This instance is used to control

Re: [IronPython] Loading a static lib a second time in hosted ironpython

2011-02-03 Thread Brian Ashcroft
It appears that I cannot load any kind of dll into the scripting host. Here is the code that I use to start the script, maybe I have missed something here? ScriptEngine engine; ScriptScope scope; engine = Python.CreateEngine(); scope = engin

[IronPython] Loading a static lib a second time in hosted ironpython

2011-02-03 Thread Brian Ashcroft
Hello, I have an ironpython instance running within my application. This instance is used to control the application. I have a math dll that I reference in the hosting application that I would like to be able to use also in the ironpython scripting. However, I get error messages when I try t