*** th1a has quit IRC | 00:22 | |
*** replaceafill has quit IRC | 00:31 | |
*** th1a has joined #schooltool | 00:58 | |
*** th1a has quit IRC | 01:23 | |
*** menesis has quit IRC | 01:37 | |
*** menesis1 has joined #schooltool | 01:37 | |
*** menesis1 is now known as menesis | 01:38 | |
*** Lumiere has quit IRC | 01:42 | |
*** Lumiere has joined #schooltool | 01:44 | |
*** menesis has quit IRC | 02:16 | |
*** th1a has joined #schooltool | 03:40 | |
*** th1a has quit IRC | 03:53 | |
*** th1a has joined #schooltool | 04:02 | |
*** th1a has quit IRC | 04:05 | |
*** menesis has joined #schooltool | 12:14 | |
*** menesis has quit IRC | 14:49 | |
*** pgulley has joined #schooltool | 15:41 | |
*** yvl has joined #schooltool | 16:05 | |
*** menesis has joined #schooltool | 16:05 | |
*** ignas has joined #schooltool | 16:07 | |
*** replaceafill has joined #schooltool | 16:23 | |
pgulley | hey, replaceafill | 16:37 |
---|---|---|
replaceafill | hi pgulley | 16:37 |
pgulley | I sorted out jelkner's problem- | 16:37 |
replaceafill | what was it? | 16:37 |
pgulley | When the skills were reloaded, the quiz items which had skill items lost them | 16:38 |
replaceafill | hhmm yes | 16:38 |
pgulley | So when update skills was run, no skills were found for the old quiz items. | 16:39 |
replaceafill | jelkner was supposed to be aware of that though | 16:39 |
pgulley | 'supposed to be' being the key word, hah. | 16:39 |
replaceafill | reloading skills creates "new" section skills | 16:39 |
replaceafill | :) | 16:39 |
replaceafill | anyway, glad it was "simple" | 16:39 |
replaceafill | i tested your branch | 16:40 |
pgulley | anything glaring? | 16:40 |
replaceafill | i think you have a unicode problem | 16:40 |
replaceafill | when showing the saved answer | 16:40 |
pgulley | not impossible | 16:40 |
pgulley | For open questions? | 16:40 |
replaceafill | i think a test should be written | 16:40 |
replaceafill | yes | 16:40 |
pgulley | Alright. | 16:40 |
pgulley | Yes, that was actually the next thing I was going to talk to you about | 16:41 |
replaceafill | but it works :) | 16:41 |
* pgulley is joyous | 16:41 | |
pgulley | but tests | 16:41 |
pgulley | I started to write them yesterday afternoon | 16:41 |
pgulley | But I can't get them to run properly as they stand | 16:42 |
pgulley | Selenium halts | 16:42 |
pgulley | I've poked at the problem on my system | 16:43 |
replaceafill | no error/failure message? | 16:43 |
pgulley | and then reproduced it on another one. | 16:43 |
pgulley | yeah, no messages | 16:43 |
pgulley | it just freezes, right after the second test | 16:43 |
replaceafill | you can pass -v to bin/test to see the test txt filename | 16:44 |
pgulley | oh! that's useful. | 16:45 |
pgulley | okay. I'll poke at it some more. | 16:45 |
pgulley | Is there any reason that the tests need to run with chromium rather than chrome? | 16:45 |
replaceafill | hmm not sure | 16:46 |
replaceafill | i use chromium | 16:46 |
pgulley | okay. It's in student_answers.txt, on my system. | 16:48 |
pgulley | but it halts somewhere else on the other system I tested. Let me look at that one | 16:48 |
replaceafill | i get an error on student_answers | 16:49 |
replaceafill | ah | 16:49 |
replaceafill | the unicode problem | 16:49 |
replaceafill | line 113 | 16:49 |
pgulley | Mine halts around line 66? | 16:49 |
pgulley | So on the other system | 16:51 |
pgulley | it halts in update_skills | 16:51 |
replaceafill | using chrome? | 16:51 |
pgulley | no, that one's on chromium | 16:51 |
pgulley | (it also is executing the tests in a different order. It's the first test executed in both cases) | 16:52 |
pgulley | the other system throws an error though- connection refused | 16:52 |
replaceafill | are you running "test-headless"? | 16:52 |
replaceafill | or just "bin/test" | 16:53 |
pgulley | just bin/text | 16:53 |
pgulley | *test | 16:53 |
pgulley | (rather, make ftest) | 16:53 |
replaceafill | here's my bin/test-headless output: http://pastebin.com/1RTgGXaZ | 17:01 |
replaceafill | failures related to the default=... usage in the take view for deployed quizzes | 17:02 |
replaceafill | the one in update_skills_button, Skills has changed to Skill Sets in CanDo | 17:07 |
pgulley | hrm. okay. | 17:18 |
*** ignas has quit IRC | 17:18 | |
pgulley | that's still just a unicode thing, no? | 17:18 |
pgulley | How would I configure my selenium tests to use chromium? | 17:18 |
pgulley | sorry, I thought I new how. | 17:18 |
replaceafill | in your buildout.cfg | 17:18 |
replaceafill | theres a line: | 17:18 |
replaceafill | selenium.linux_chrome.capabilities.chrome.binary = "/opt/google/chrome/chrome" | 17:18 |
replaceafill | or | 17:18 |
replaceafill | selenium.linux_chrome.capabilities.chrome.binary = "/usr/lib/chromium-browser/chromium-browser" | 17:18 |
replaceafill | you may not get my same failures, because i was messing with your changes | 17:18 |
replaceafill | in any case old tests should pass everywhere | 17:18 |
replaceafill | and you should add a new one for checking the take view can show saved values | 17:18 |
pgulley | Alright! | 17:18 |
pgulley | at this point I still need to get my system configured right, evidently, because the tests still just stop running | 17:18 |
pgulley | but it's a system problem, not a code problem | 17:18 |
pgulley | so changing that setting in the buildout.cfg doesn't change how my browser runs | 17:39 |
pgulley | replaceafill, I've re-run make buildout | 17:39 |
pgulley | I can see in bin/test that the right path is being provided, but it still is using chrome | 17:40 |
replaceafill | can you paste your buildout.cfg? | 17:42 |
pgulley | http://pastebin.com/CCxL9rPs | 17:45 |
replaceafill | pgulley, everything looks good to me | 17:47 |
pgulley | and yet... | 17:47 |
replaceafill | /usr/lib/chromium-browser/chromium-browser is in your system, right? | 17:49 |
pgulley | yep! | 17:49 |
replaceafill | and you ran bin/buildout... | 17:49 |
pgulley | yep | 17:50 |
replaceafill | can you paste your bin/test? | 17:52 |
pgulley | http://pastebin.com/d0uB7BSy | 17:57 |
replaceafill | pgulley, i think i know what it is | 17:58 |
replaceafill | run /usr/bin/chromedriver | 17:58 |
replaceafill | and tell me the version you're using | 17:58 |
replaceafill | use CTRL + C to stop it | 17:58 |
pgulley | v2.0 | 17:58 |
replaceafill | right | 17:58 |
replaceafill | it seems you need an old version | 17:59 |
replaceafill | the deprecated ones | 17:59 |
replaceafill | https://code.google.com/p/chromedriver/downloads/list | 17:59 |
replaceafill | i'm using the 23 | 17:59 |
replaceafill | let me try the 26 | 17:59 |
replaceafill | computers... | 17:59 |
replaceafill | :) | 17:59 |
replaceafill | yep | 18:00 |
replaceafill | i think that's it | 18:00 |
replaceafill | 26 brings chromium up | 18:00 |
replaceafill | 2.1 uses chrome | 18:00 |
pgulley | ahha! | 18:01 |
pgulley | okay, that's probably the whole thing, then | 18:01 |
replaceafill | i need to go now, try it and let me know if you have more trouble (i hope not) | 18:02 |
pgulley | so I should use the 26? | 18:03 |
replaceafill | yes | 18:03 |
replaceafill | 26 worked for me | 18:03 |
pgulley | haha. so much for depreciated | 18:03 |
replaceafill | :) | 18:03 |
replaceafill | yeah | 18:03 |
pgulley | +1 | 18:05 |
pgulley | We're good! | 18:05 |
pgulley | okay, I'll let you go | 18:05 |
pgulley | Thanks a bunch | 18:05 |
pgulley | :) | 18:05 |
replaceafill | np see you pgulley | 18:05 |
*** replaceafill has quit IRC | 18:06 | |
*** pgulley has quit IRC | 19:44 | |
*** menesis has quit IRC | 20:33 | |
*** pgulley has joined #schooltool | 21:38 | |
*** pgulley has quit IRC | 21:38 | |
*** replaceafill has joined #schooltool | 22:05 | |
*** menesis has joined #schooltool | 22:36 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!