=== MacSlow is now known as MacSlow|lunch === MacSlow|lunch is now known as MacSlow [21:19] veebers! hello my friend [21:20] I am one curious cat on when we might see an new autopilot release. And specifically, I want https://code.launchpad.net/~nskaggs/autopilot/add-wm-sandbox-run/+merge/242274 in it :-) [21:21] balloons:hey o/ [21:23] balloons: I could probably do one soon as I have a fix for unit test failures on wily. that would bring it in check with the vivid overlay (with the pointer fix) [21:26] right.. that's also weird to have vivid overlay be > wily [21:26] but then, the overlay is a different story :-) [21:28] heh yeah, helps to make things a little more complicated. I'm not even sure if I can land in vivid overlay right now [21:40] ok. And the release ofc would still be Autopilot 1.5 yes? I take it 1.6 is being held up with all these quick fixes going in? [21:46] balloons: aye, would still be 1.5 [21:47] balloons: d'oh, I thought I had top approved this ages ago, was a little confused why it might not have been released [21:47] balloons: let me top approve now and get a release in action [21:47] is a good opportunity to sync wily/vivid [21:49] veebers, that would be excellent. The new plugin for the SDK really needs to functionality [21:50] balloons: I'm not sure I follow that? [21:50] lol.. my typing / long day [21:51] in short, I need to use a WM with the sandbox script, but can't until this is released [21:51] and I too had thought it had gone in [21:53] balloons: ah I see. Yeah sorry about that, hiccup on my part. Once merged to trunk I'll do the mojo needed to try get a branch that will land in v/w [21:54] or failing that just do 2 releases [21:54] * balloons pictures veebers whispering incantations [22:01] ^_^ [22:08] Hi, is there a way of telling autopilot to launch the app as if it was going to run the tests (eg run setUp() etc), but not actually run them so i can test/debug the mocking/fixtures ? [22:10] ahayzen: launching the app is separate to the tests or fixtures. You can always use a debugger and set a breakpoint where you want to start digging. [22:10] i.e. import pdb; pdb.set_trace() [22:10] although I like using ipdb instead as its a little nicer [22:11] but i want to test why the fixtures/mocking aren't working, so i just want to 'run' the tests...without actually running the tests [22:15] ahayzen: well, you could always write a standalone script and test the fixtures that way, but if you're wanting to debug a test you're going to have to run the test [22:15] ok :-) i guess i could just have an empty test thinking about it