/srv/irclogs.ubuntu.com/2009/08/29/#launchpad-dev.txt

lifelesswho is vikram00:01
lifelessand why are they marking malone bugs 'in progress'00:01
lifelessbug 420799 and bug 42080700:01
mupBug #420799: bug lists - undecided complete bugs should sort above critical <Launchpad Bugs:In Progress> <https://launchpad.net/bugs/420799>00:01
mupBug #420807: in bug lists, fix committed bugs should sort higher <Launchpad Bugs:In Progress by dhillon-v10> <https://launchpad.net/bugs/420807>00:01
lifelessabentley: evening00:04
* wgrant wishes for an "undo that user's actions" button in malone.01:37
lifelesswgrant: oh?05:31
wgrantlifeless: Some triagers like to do bad things.05:36
wgrantLike removing bugwatches and invalidating all three tasks on a needs-packaging bug, just because a five-year-old version was removed two years ago.05:37
wgrant(even though that bug had a comment a week ago saying that the new package was almost done)05:38
lifelessugh05:39
lifelesswgrant: have you seen this dhillon-v10 around?05:40
lifeless09:01 < lifeless> who is vikram05:40
lifeless09:01 < lifeless> and why are they marking malone bugs 'in progress'05:40
lifeless09:01 < lifeless> bug 420799 and bug 42080705:40
mupBug #420799: bug lists - undecided complete bugs should sort above critical <Launchpad Bugs:In Progress> <https://launchpad.net/bugs/420799>05:40
mupBug #420807: in bug lists, fix committed bugs should sort higher <Launchpad Bugs:In Progress by dhillon-v10> <https://launchpad.net/bugs/420807>05:40
wgrantlifeless: I wondered that myself.05:41
wgrantAll I've seen is those two.05:42
wgrantMakes no more sense to me than it does to you.05:42
wgrantAh, there's a post on lp-users.05:42
lifelesshe sure is enthusiastic05:47
lifeless[just catching up on bug mail :P]05:48
* wgrant ventures into the buildd code.05:51
jmlwgrant, good luck!06:03
wgrant'ubounty'. Nice.06:44
lifelessits a bit like ubuty06:45
wgrantI'm disappointed that there were only two different spellings.06:45
wgrantNot creative enough.06:45
jml:)06:45
jmlhmm. that reminds me, I should fix up the failing tests in my bounty removal branch.06:45
lifelessubuty would be valid straine though06:46
wgrantjml: Kill it!06:46
wgrantWhy's db-devel so out of date?07:02
jmlwgrant, the normal answer is conflicts between stable & db-devel07:05
* jml checks to see if the answer is correct this time07:05
jmlhooray, both builds are broken.07:06
wgrantYay!07:06
* jml misses PQM07:09
* wgrant looks for the 'spin and eat disk for several minutes' statement in security.py07:39
lifeless'sql'07:43
mwhudsonlooks like i killed the db_lp builder yesterday :(07:56
mwhudsonand the thing that merges stable into db-devel seems to have gone away too ?07:58
wgrantmwhudson: Ahah. That would explain it.07:59
lifelessanyone else seeing the top of edge pages borked /11:14
thekornyes11:18
wgrantlifeless: That's normal.11:22
wgrantlifeless: It's the new breadcrumbs interacting badly with the old 2.0 views.11:22
wgrantHopefully they'll all be 3.0 in a couple of weeks.11:22
lifeless\o/ hit the bottom the yak shaving stack for today11:23
lifeless'glue subunit to pqm' -> 'update pqm clean bugs prep the work area' -> 'release new config-manager' -> 'update the package cause it was removed from debian' -> 'uploaded!'11:24
wgrantNice.11:24
lifelessso, we're down to wrapping up  'glue subunit to pqm' -> 'update pqm clean bugs prep the work area'11:24
lifelessthen I can finally do what I wanted to do.11:25
lifelessI spoke to soon11:45
lifelessneed to do a subunit snapshot :P11:46
maxbI see devel != stable at the moment, what's broken, the buildbot or the tests?16:53
gary_postermaxb: for that side, the tests.  devel has 14 failures and 10 errors.  (meanwhile, db-devel had a bzr failure, so on that side the machinery failed rather than the tests)16:59
gary_posterfor ref, http://pastebin.ubuntu.com/261505/17:01
gary_poster(we'd like buildbot to be public too; need some work to do that, particularly upgrading to recent buildbot deb.  That might be in progress.)17:02
maxbthanks17:23
maxbooi, do you have plans for severing the remaining dependencies on non-egg zope?17:23
maxb(ThreadedAsync and docutils)17:23
maxbIs anyone else being bombarded by 'lp-sourcedeps/eggs/zope.viewlet-3.4.2-py2.5.egg/zope/__init__.py:3: UserWarning: Module lazr was already imported from None, but /home/maxb/launchpad/lp-branches/python2.5/lib is being added to sys.path' ?18:03
gary_postermaxb: bombarded: no, but I know the general cause of that symptom.  I have a branch that should make that particular example of it go away (by moving lazr.* stuff to zc.buildout).  I actually tried to land it Friday but there are some broken lazr.* distributions (they build by trying to go over the net, and we don't allow that) that I'm fixing now.18:16
maxbhmm. I get it in several tests, which causes them to then fail since their output is not as expected18:17
gary_postermaxb: docutils is already provided by eggs.  Not removing the docutils symlink was an oversight, probably of mine.18:20
maxbeasy to fix, then :-)18:20
gary_postermaxb: yeah. :-) zope has moved past ThreadedAsync, and it is not packaged.  ISTR we still use it.  That should be investigated, and removed now if easy, soonish if not so easy.18:21
maxbgrep suggests only used by poppy18:21
maxbWell here's a bit of a headscratcher... lib/lp/bugs/tests/../doc/bug-export.txt is broken by splitting a single try: except: block across multiple doctest examples by erroneously using all >>>, instead of ... for the continuation lines.18:29
maxbExcept it passes when run under the lp testsuite under python2.418:29
maxbBut the syntax does NOT parse with plain old python2.4 doctest!18:29
gary_postermaxb: broken tests: we already filter that warning out *lots* of places.  if you grep for 'was already imported from' you'll see 'em.  I'm surprised we haven't caught the ones you see, because yeah, they make the tests fail.  Maybe it is a 2.5 thing.  You can at least see how to silence the warnings from the grep results.18:29
gary_postermaxb: we use zope's fork of doctest with new features.  perhaps it has the usual problems with a fork.18:30
maxbAha... whereabouts in all of zope should I be looking for that?18:31
gary_posterzope.testing.doctest18:31
gary_postermaxb: Is the ThreadedAsync/poppy thing a problem for py 2.5/2.6?18:33
maxbNo - it's just a little crazy to be depending on the zope branch just for 2 files18:34
gary_postermaxb: eek!  the fact that it is working for everyone is an accident, then.  Deployment is accidentally fine because we use a different mechanism for sourcecode, and old dev instances are fine because they still have zope hanging around, but if somebody new tried to build lp right now it would break for them because it wouldn't get zope, and poppy needs it apparently.  I removed the code that updates the zope branch.18:41
gary_posterthanks for bringing that up.  That's probably my first priority now.18:41
gary_posterbuildbot and ec2 use the same mechanism as deployment, kinda sorta18:42
gary_posterec2test I mean18:42
gary_posterso on the bright side, those symlinks will be gone no later than Tuesday ;-)18:45
=== abentley1 is now known as abentley
=== abentley1 is now known as abentley
ddaaHey there19:11
ddaaI'd like to know if it's something wrong here, or if it's a known problem19:11
ddaabut the windmill test suite does not appear to pass here19:12
ddaaI run it with bin/jstest19:12
ddaaAnd it ends telling me "Failed: 3 test suites failed"19:13
ddaaI ran a rocketfuel-get to get the latest code just before starting the test suite19:13
ddaacurrently launchpad r926419:14
ddaaAre the jstests deprecated?19:14
ddaaOr something?19:14
gary_posterddaa: last I heard about this was when someone was talking about starting to fix this, about three weeks ago.  That person has had to go to other plans for now.  I would not be surprised if it fails, but I do not know.  It won't truly be part of our system until the test pass and buildbot (or something else like that) runs them regularly.  It's worth asking Monday when more folks will be around.  If you ask me then I can try19:15
gary_posterdirect you.19:15
gary_posterdirect the question I mean19:15
ddaayeah, I figured that it was not run by the pqm because it's not in what "make check" does.19:16
gary_posterright19:16
ddaaRight now I'm in a sprint with afpy folks (the french python user group) and I'm in a track to evaluate selenium/windmill etc.19:17
ddaaI figured I should start by looking at how launchpad did it, knowing how the folks are fanatical about test coverage.19:17
ddaaFrankly, I'm very disappointed by what I say.19:17
ddaaBy what I saw.19:18
ddaaTo get those failure I needed to fix a very trivial import bug.19:21
ddaahttp://python.pastebin.com/m34a9f13419:24
ddaaIt's kinda weak to find a bug like this in launchpad mainline :(19:24
gary_posterddaa: Thank you for highlighting this (and the patch).  We are fairly fanatical about test actually, yes, but the person in charge of that part of the effort has been pulled away from it unavoidably (and temporarily), and we've had some other changes that made us drop that ball.  We'll pick it back up starting Monday.19:27
gary_postermeanwhile, must run.19:27
maxbLP thinks the development focus series for LP itself is 2.1, someone should probably flip that to 3.119:44

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!