Tuesday, 2019-08-27

stewie925"Failed to import test module: ord.tests.unit.api.controllers.v1.test_api"00:00
stewie925but the module 'ord.tests.unit.api.controllers.v1.test_api' is part of the commit  https://review.opendev.org/#/c/677258/5/ord/tests/unit/api/controllers/v1/test_api.py00:02
*** markvoelker has joined #openstack-qa00:10
*** rh-jelabarre has quit IRC00:14
*** markvoelker has quit IRC00:15
clarkbstewie925: urllib.error doesnt exist00:16
clarkbit is finding the file you list just fien but failing to import the code because urllib.error does not exoet00:17
stewie925hi clarkb sorry for the late response00:30
stewie925here is my paste.openstack.org (http://paste.openstack.org/show/765324/) to explain the issues -  it seems tox py36 is looking at the old version of the code, instead of the committed code.00:31
clarkbstewie925: I'm confused that is a different change than the one above00:35
stewie925sorry for the confusion clarkb00:36
stewie925 but I hope my pastebin clears things up00:36
clarkbcan we start from the beginning. Which change is the one with the problem?00:36
*** hongbin has joined #openstack-qa00:37
stewie925please ignore my earlier messages,  I laid out my concerns in the http://paste.openstack.org/show/765324/00:37
clarkbok00:37
stewie925I just posted the first two test cases00:38
stewie925for the first test case-  the py36 seems to be looking at file "/home/zuul/src/opendev.org/x/ranger-agent/ord/tests/unit/api/controllers/v1/test_api.py"  - it does not match the committed code from https://review.opendev.org/#/c/677258/5/ord/tests/unit/api/controllers/v1/test_api.py00:39
stewie925line 20 from "/home/zuul/src.../test_api.py"   shows mox  "from mox import stubout"   while the actual committed code shows  mox3   "from mox3 import stubout"00:41
openstackgerritzhufl proposed openstack/tempest master: Add response schema validation for volume quota_set  https://review.opendev.org/60333900:43
stewie925the second test case has the same issue - the tox py36 process  reads from "/home/zuul/src/opendev.org/x/ranger-agent/ord/common/utils.py"  file, which is different from the committed code "https://review.opendev.org/#/c/677258/5/ord/common/utils.py00:44
clarkbya the log implies it may be checking out https://review.opendev.org/#/c/670909/00:45
stewie925oh yikes00:45
stewie925clarkb -  really appreciate you looking at this00:46
stewie925let me look for that 670909 in that job-output.txt00:46
clarkbhttps://zuul.opendev.org/t/openstack/build/b405f247cf3a441b924bce4c35b2f635/log/job-output.txt#274 is where it implies that00:46
clarkbthe py27 job did not do that00:48
clarkbpy27 checked out the correct commit https://zuul.opendev.org/t/openstack/build/da6aa38314d9494d9528ce122593c831/log/job-output.txt#27500:48
stewie925thanks Clark, too bad I am working behind vpn I have no access to the py27 file referenced00:50
stewie925but I can see the first file line 274 - I do not see 670909 referenced though, strange...00:50
stewie925274    2019-08-26 16:36:29.124659 | ubuntu-bionic | opendev.org/x/ranger-agent checked out to:   <blank>00:51
clarkbstewie925: ya look at the next line00:52
stewie925oh - 2019-08-26 16:36:29.124777 | ubuntu-bionic | e796eb53956f1e83ddc53a8dce9cf3957b3b59ef Minor fix - Catch DBConnectionError when update target data00:52
stewie925thank you - now I understand....  I looked up commit e796eb53956f1e83ddc53a8dce9cf3957b3b59ef   and it does point to 67090900:53
stewie925I will try to do recheck, maybe this was just a quirk00:53
stewie925recheck right now00:54
stewie925thank you very much clarkb00:56
clarkbI'm reading the ara report and it seems that the git repo setup may have pushed that in as master rather than the speculative head00:56
clarkblet me see if I can quickly find anything about that in the zuul logs00:57
clarkbstewie925: I think part of the problem here is it checked out master but should've checked out python301:01
stewie925right, it should have :)01:01
clarkband sure enough the zuul inventory file shows a checkout value of master01:02
clarkbthe python27 job has a proper checkout value01:03
clarkbusually this is becuse you've got a hard set override somewhere /me looks01:03
stewie925thanks for the step by step explanation01:03
stewie925oh man,  clarkb  - my recheck https://review.opendev.org/#/c/677258/ now shows both py27 and py36 passed, but pep8 failed01:04
stewie925:))01:05
stewie925looking in now01:05
clarkbyou've only defined py36 and tox in your change too so why is py27 runnin01:07
clarkb?01:07
clarkbfrom openstack/project-config/zuul.d/projects.yaml entry01:08
stewie925hi clarkb, yeah we havent committed another zuul.yaml file yet01:09
stewie925correction - there is a project-config change we made that has not yet committed - that should fix it01:10
clarkbthe recheck used the correct branch01:10
clarkbso whatever caused it doesn't seem to keep causing it or isn't causing it 100% of the time01:10
stewie925it looks like this second time around, the pep8 is looking at the 670909 commit01:10
*** slaweq has joined #openstack-qa01:11
openstackgerritwanglbj proposed openstack/tempest master: Modify the list group date  https://review.opendev.org/67474101:12
stewie925so this is an issue only if its processing a non-master branch01:12
clarkbstewie925:  https://zuul.opendev.org/t/openstack/build/ff691a33f03945c49c98be8dac5593a1/log/job-output.txt#276that is the correct commit, it isn't master01:12
clarkbthat is the pep8 job01:12
*** rcernin has quit IRC01:13
clarkbstewie925: pep8 failed because you are using python2 to flake8 but have python3 only print syntax01:14
clarkbeither keep the print function from future or switch to python3 for the linter tox entry01:15
stewie925oh we are dropping python2.701:15
*** slaweq has quit IRC01:16
stewie925the first commit's pep8 was good (no errors)  but the py tests failed -   the recheck is the other way around01:16
clarkbprobably because the first one ran against master01:16
clarkbyup confirmed01:17
stewie925am checking my tox.ini  - i do remember I removed all references to py27 and replaced with py3601:17
stewie925https://review.opendev.org/#/c/677258/5/tox.ini01:18
clarkbthe default is to run against whatever python tox runs under01:18
stewie925how do I fix that on my end?01:18
clarkband that must be python2. If you want no python2 then you should explicitly set the python version you want to python301:18
clarkbstewie925: set https://tox.readthedocs.io/en/latest/config.html#conf-basepython to python3 iirc01:20
stewie925ok I see it - I missed the setup.cfg -   its still pointing to python2 and python2.701:21
stewie925ahh, thank you clarkb!  I will include that to tox.ini as well01:21
clarkbas for why master was chosen before zuul selected the default branch for the repo (master) for some reason01:23
clarkbon the jobs that worked it correctly logs checking out python301:23
clarkbok the problem is that some zuul nodes don't see the python3 branch01:28
clarkb(I don't know why yet)01:28
stewie925its alright , must be  8 pm on your end01:28
stewie9258:28 pm your end01:28
clarkbonly 6:2901:29
clarkbI'm going to write down my notes of what I've found in #zuul so that we can debu further tomorrow01:29
stewie925ahhahha  same here01:29
stewie925thanks so much Clarkb   PST here too01:29
stewie925finally it passed01:42
stewie925oops - pep8 still pointing to 67090901:43
stewie925thanks again Clarkb -  it does look like pep8 is pointing to python3 branch   this time01:44
stewie925ubuntu-bionic | 09c25c49951c2f1c8c6ea5fe60ee24063bb164a8 Update ranger-agent to python3.6/mox301:44
openstackgerritzhufl proposed openstack/tempest master: Use create_image_from_server to create image for server  https://review.opendev.org/67871102:04
*** slaweq has joined #openstack-qa02:11
*** rcernin has joined #openstack-qa02:13
*** slaweq has quit IRC02:16
*** stewie925 has quit IRC02:16
*** larainema has joined #openstack-qa02:23
openstackgerritwanglbj proposed openstack/tempest master: Modify the list group date  https://review.opendev.org/67474103:02
*** markvoelker has joined #openstack-qa03:10
*** markvoelker has quit IRC03:15
openstackgerritzhufl proposed openstack/tempest master: Add response schema validation for volume quota_set  https://review.opendev.org/60333903:18
*** ramishra has joined #openstack-qa03:36
*** gkadam has joined #openstack-qa03:51
*** gkadam has quit IRC03:51
*** rfolco has quit IRC04:03
*** udesale has joined #openstack-qa04:06
*** markvoelker has joined #openstack-qa04:10
*** slaweq has joined #openstack-qa04:11
*** hongbin has quit IRC04:13
*** markvoelker has quit IRC04:15
*** slaweq has quit IRC04:16
*** raukadah is now known as chkumar|rover04:26
*** dave-mccowan has quit IRC04:36
*** sridharg has joined #openstack-qa05:10
*** sridharg has quit IRC05:10
*** markvoelker has joined #openstack-qa05:10
*** sridharg has joined #openstack-qa05:11
*** slaweq has joined #openstack-qa05:11
*** markvoelker has quit IRC05:15
*** slaweq has quit IRC05:16
*** gcheresh has joined #openstack-qa05:18
*** gcheresh has quit IRC05:27
*** Luzi has joined #openstack-qa05:43
*** e0ne has joined #openstack-qa06:06
*** e0ne has quit IRC06:11
*** slaweq has joined #openstack-qa06:11
*** slaweq has quit IRC06:15
*** surpatil has joined #openstack-qa06:22
*** trident has quit IRC07:00
*** markvoelker has joined #openstack-qa07:06
*** trident has joined #openstack-qa07:10
*** slaweq has joined #openstack-qa07:11
*** markvoelker has quit IRC07:15
*** slaweq has quit IRC07:15
*** markvoelker has joined #openstack-qa07:35
*** dtantsur|afk is now known as dtantsur07:37
*** rcernin has quit IRC07:40
*** jpena|off is now known as jpena07:40
*** markvoelker has quit IRC07:40
*** surpatil has quit IRC07:44
openstackgerritzhufl proposed openstack/tempest master: Add response schema validation for volume quota_set  https://review.opendev.org/60333907:50
*** slaweq has joined #openstack-qa07:52
*** lucasagomes has joined #openstack-qa07:53
*** gfidente has joined #openstack-qa08:00
*** markvoelker has joined #openstack-qa08:40
*** markvoelker has quit IRC08:45
*** slaweq has quit IRC08:53
openstackgerritSai Kiran proposed openstack/tempest master: Validation of openstack keystone version status  https://review.opendev.org/67346609:01
*** gcheresh has joined #openstack-qa09:03
*** surpatil has joined #openstack-qa09:04
*** slaweq has joined #openstack-qa09:10
*** slaweq has quit IRC09:14
*** slaweq has joined #openstack-qa09:20
*** slaweq has quit IRC09:25
*** dtantsur is now known as dtantsur|bbl09:31
*** brinzhang_ has quit IRC09:32
*** brinzhang_ has joined #openstack-qa09:32
*** sshnaidm is now known as sshnaidm|afk09:41
*** brinzhang_ has quit IRC09:49
*** brinzhang_ has joined #openstack-qa09:50
*** lucasagomes has quit IRC09:53
*** lucasagomes has joined #openstack-qa09:58
*** cgoncalves has quit IRC10:04
*** cgoncalves has joined #openstack-qa10:04
*** e0ne has joined #openstack-qa10:11
*** e0ne has quit IRC10:26
*** e0ne has joined #openstack-qa10:28
*** e0ne has quit IRC10:32
openstackgerritWill Szumski proposed openstack/tempest master: Add option to set compute quotas for dynamic users  https://review.opendev.org/65653410:53
*** slaweq has joined #openstack-qa10:55
*** udesale has quit IRC11:02
*** brinzhang_ has quit IRC11:09
*** brinzhang_ has joined #openstack-qa11:09
*** tesseract has joined #openstack-qa11:11
*** jpena is now known as jpena|lunch11:30
*** slaweq has quit IRC11:31
*** slaweq has joined #openstack-qa11:33
*** slaweq has quit IRC11:41
*** slaweq has joined #openstack-qa11:53
*** slaweq has quit IRC11:57
*** sshnaidm|afk is now known as sshnaidm11:59
*** rh-jelabarre has joined #openstack-qa12:05
*** dtantsur|bbl is now known as dtantsur12:08
*** markvoelker has joined #openstack-qa12:10
*** gcheresh has quit IRC12:10
*** gcheresh has joined #openstack-qa12:12
*** slaweq has joined #openstack-qa12:12
*** slaweq has quit IRC12:17
*** rfolco has joined #openstack-qa12:22
*** gcheresh has quit IRC12:26
*** jpena|lunch is now known as jpena12:32
*** larainema has quit IRC12:35
*** surpatil has quit IRC12:39
*** slaweq has joined #openstack-qa12:40
*** nweinber has joined #openstack-qa12:43
*** slaweq has quit IRC13:04
*** brinzhang_ has quit IRC13:12
*** brinzhang has joined #openstack-qa13:14
*** mriedem has joined #openstack-qa13:22
*** udesale has joined #openstack-qa13:32
*** e0ne has joined #openstack-qa13:54
*** Luzi has quit IRC14:02
*** sshnaidm_ has joined #openstack-qa14:29
*** sshnaidm has quit IRC14:30
*** udesale has quit IRC14:32
*** stewie925 has joined #openstack-qa14:34
*** sshnaidm__ has joined #openstack-qa14:34
*** spsurya has joined #openstack-qa14:35
*** sshnaidm_ has quit IRC14:36
*** sshnaidm__ is now known as sshnaidm14:51
*** sridharg has quit IRC15:02
*** mattw4 has joined #openstack-qa15:17
*** mattw4 has quit IRC15:22
*** chkumar|rover is now known as raukadah15:31
*** e0ne has quit IRC15:52
*** brinzhang has quit IRC15:52
*** brinzhang has joined #openstack-qa15:52
*** sshnaidm is now known as sshnaidm|afk15:54
*** jpena is now known as jpena|off16:04
*** lucasagomes has quit IRC16:07
*** slaweq has joined #openstack-qa16:33
*** dtantsur is now known as dtantsur|afk16:42
*** amotoki is now known as amotoki_16:42
stewie925hello - I'm looking at the setup.cfg  for a few Openstack projects (nova/neutron) when defining the 'Programming Language ' - they define separate entries for Python 3  and Python 3.6.16:56
stewie925why is there a need to define python 3 and python 3.6?16:57
*** e0ne has joined #openstack-qa17:02
*** gfidente has quit IRC17:02
clarkbhttps://pypi.org/pypi?%3Aaction=list_classifiers is a full list. I think it is just a way to have a heirarchy17:04
clarkbeventually you'll have python 3 and python 3.6 and 3.7 and 3.8 and so on depending on what is tested17:05
stewie925ahh thank you clarkb!17:05
clarkbstewie925: fyi you caught a zuul bug yesterday fixed in https://review.opendev.org/#/c/678895/317:05
stewie925hehehe clarkb thank you for following up on the zuul bug - you're the man!17:06
clarkbstewie925: https://pypi.org/classifiers/ has more info17:07
*** slaweq has quit IRC17:27
*** slaweq has joined #openstack-qa17:28
*** tesseract has quit IRC17:30
*** slaweq has quit IRC17:33
*** rh-jelabarre has quit IRC17:36
*** rh-jelabarre has joined #openstack-qa17:38
*** e0ne has quit IRC17:49
openstackgerritRick Bartra proposed openstack/patrole master: Fix 'use_dynamic_credentials = false' with Neutron extension tests  https://review.opendev.org/67697917:57
openstackgerritRick Bartra proposed openstack/patrole master: Fix 'use_dynamic_credentials = false' with Neutron extension tests  https://review.opendev.org/67697918:01
*** ramishra has quit IRC18:43
openstackgerritNicolas Helgeson proposed openstack/tempest master: [WIP] Add specifiable clean up function  https://review.opendev.org/59773318:45
*** e0ne has joined #openstack-qa18:51
*** markvoelker has quit IRC19:07
*** markvoelker has joined #openstack-qa19:08
*** e0ne has quit IRC19:19
*** gcheresh has joined #openstack-qa19:22
*** artom has quit IRC19:36
*** artom has joined #openstack-qa19:43
*** nweinber has quit IRC19:56
*** artom has quit IRC20:23
*** artom has joined #openstack-qa20:25
*** gcheresh has quit IRC20:30
openstackgerritMerged openstack/tempest master: Add response schema validation for volume hosts  https://review.opendev.org/60329520:34
openstackgerritNicolas Helgeson proposed openstack/tempest master: [WIP] Add specifiable clean up function  https://review.opendev.org/59773320:59
*** spsurya has quit IRC21:07
*** markvoelker has quit IRC21:19
openstackgerritNicolas Helgeson proposed openstack/qa-specs master: Add a user-isolated cleanup option to tempest cleanup  https://review.opendev.org/59527721:30
*** mriedem has quit IRC21:48
*** trident has quit IRC22:05
*** trident has joined #openstack-qa22:13
*** rcernin has joined #openstack-qa22:15
*** markvoelker has joined #openstack-qa22:15
*** markvoelker has quit IRC22:20
*** markvoelker has joined #openstack-qa23:15
*** markvoelker has quit IRC23:20
openstackgerritMerged openstack/tempest master: Add response schema validation for volume capabilities  https://review.opendev.org/60557423:31
*** markvoelker has joined #openstack-qa23:55

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