Wednesday, 2019-10-16

gmannQA office hour time00:01
gmann#startmeeting qa00:01
openstackMeeting started Wed Oct 16 00:01:11 2019 UTC and is due to finish in 60 minutes.  The chair is gmann. Information about MeetBot at http://wiki.debian.org/MeetBot.00:01
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.00:01
*** openstack changes topic to " (Meeting topic: qa)"00:01
openstackThe meeting name has been set to 'qa'00:01
gmannwho all here today00:01
gmannno one seems. lI would like to point two main things 1. tempest 22.1.0 is released for CLI test fix 2. Add topic for PTG in this etherpad - https://etherpad.openstack.org/p/shanghai-ptg-qa00:04
gmann#endmeeting00:05
*** openstack changes topic to "Discussion of OpenStack Quality Assurance Projects (tempest, devstack, grenade, and friends) | docs https://wiki.openstack.org/wiki/QA | specs https://review.openstack.org/#/q/project:openstack/qa-specs | channel logs http://eavesdrop.openstack.org/irclogs/%23openstack-qa/"00:05
openstackMeeting ended Wed Oct 16 00:05:02 2019 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)00:05
openstackMinutes:        http://eavesdrop.openstack.org/meetings/qa/2019/qa.2019-10-16-00.01.html00:05
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/qa/2019/qa.2019-10-16-00.01.txt00:05
openstackLog:            http://eavesdrop.openstack.org/meetings/qa/2019/qa.2019-10-16-00.01.log.html00:05
clarkbcentos-8 nodes are available now in zuul00:05
clarkbianw just sent mail to the discuss list about it00:05
masayukiggmann: oh, is the office hour today?00:05
gmannclarkb: thanks. do we tempest have job also for that ?00:05
masayukigI thought it's tomorrow00:06
gmannmasayukig: i think so, or i missed the timing ?00:06
clarkbno I think the next step is to add a devstack job  (which i think ianw is doing) then add tempest based on that00:06
gmannmasayukig: i see. sorry. my bad memory and calendar00:06
gmannclarkb: +1. I will check those.00:07
gmannmasayukig: btw etherpad for PTG - https://etherpad.openstack.org/p/shanghai-ptg-qa00:07
ianwclarkb: well, i got it to the point devstack can start, i don't know about adding full centos8 support :)00:09
clarkbah00:09
masayukiggmann: heh, thanks for checking :)00:13
masayukiggmann: sure, I'll take a look at it00:13
gmannthanks00:13
*** markvoelker has joined #openstack-qa00:16
*** brinzhang has joined #openstack-qa00:22
*** brinzhang_ has quit IRC00:24
*** markvoelker has quit IRC00:27
*** markvoelker has joined #openstack-qa00:36
*** markvoelker has quit IRC00:46
openstackgerritzhangboye proposed openstack/tempest-lib master: update source link in readme  https://review.opendev.org/68884200:46
*** igordc has quit IRC01:47
*** spsurya has joined #openstack-qa01:59
*** dviroel has quit IRC02:14
*** markvoelker has joined #openstack-qa02:47
*** markvoelker has quit IRC02:51
*** dave-mccowan has quit IRC02:56
*** brinzhang_ has joined #openstack-qa02:56
*** brinzhang has quit IRC02:59
*** brinzhang has joined #openstack-qa03:12
*** rh-jelabarre has quit IRC03:14
*** brinzhang_ has quit IRC03:15
*** brinzhang_ has joined #openstack-qa03:16
*** brinzhang has quit IRC03:18
*** brinzhang has joined #openstack-qa03:36
*** brinzhang_ has quit IRC03:38
*** brinzhang_ has joined #openstack-qa04:04
*** ramishra has joined #openstack-qa04:06
*** brinzhang has quit IRC04:07
*** jdwidari has quit IRC04:10
*** brinzhang_ has quit IRC04:14
*** brinzhang_ has joined #openstack-qa04:15
*** soniya29 has joined #openstack-qa04:16
*** raukadah is now known as chandankumar04:29
*** pcaruana has joined #openstack-qa04:37
*** anastzhyr has joined #openstack-qa05:00
anastzhyrHello channel05:04
anastzhyr"Tempest will automatically discover any installed plugins when it is run. So by just installing the python packages which contain your plugin you’ll be using them with Tempest, nothing else is really required."05:04
anastzhyrLet's say I have https://opendev.org/openstack/cinder-tempest-plugin05:04
anastzhyrWhat does it mean, "install the python package" in this case?05:04
*** surpatil has joined #openstack-qa05:05
masayukiganastzhyr: yes, you just need to install the python package, then you should be able to use the tempest plugin. Any trouble?05:08
anastzhyrI am super sorry, but I don't understand "how to install python package"05:09
anastzhyrliterally, what it means05:09
masayukigah, like "pip install cinder-tempest-plugin" https://pypi.org/project/cinder-tempest-plugin/05:10
anastzhyrmasayukig: sorry for my unintelligence, `pip` is a mystery for me05:11
*** gcheresh_ has joined #openstack-qa05:11
anastzhyrmasayukig: And if I want to update code in `cinder-tempest-plugin`, I can run `pip install <folder_with_cinder_tempest_plugin>` right?05:12
*** pcaruana has quit IRC05:14
*** brinzhang has joined #openstack-qa05:14
masayukiganastzhyr: yeah, I think it should work. Or if you want to use editable-mode, you want to do with `-e` option like this `pip -e install cinder-tempest-plugin`.05:15
masayukigfrom the help doc: `  -e, --editable <path/url>   Install a project in editable mode (i.e. setuptools "develop mode") from a local project path or a VCS url.`05:16
masayukigsorry, this is `pip -e install <folder_with_cinder_tempest_plugin>`05:16
masayukigoops, `pip install -e <folder_with_cinder_tempest_plugin>05:17
*** brinzhang_ has quit IRC05:17
anastzhyrmasayukig: Cool, and then, if I run `tox -e all-plugin -- volume` in the <tempest_source_code_directory> it seems that it starts running standart tempest tests, and not my cinder tests.05:18
*** Luzi has joined #openstack-qa05:18
anastzhyrIs that what expected?05:18
masayukiganastzhyr: yeah, because there is no cinder-tempest-plugin in the environment. `tox -e xxx` creates and uses `xxx` python environment. how about in the `<folder_with_cinder_tempest_plugin>`? That should work but not in `<tempest_source_code_directory>`05:21
anastzhyrmasayukig: But the instructions says: "Then from the tempest directory run: tox... "05:22
masayukiganastzhyr: ah, let me check for a moment05:24
*** brinzhang_ has joined #openstack-qa05:24
anastzhyrmasayukig:05:24
anastzhyrif I run `tox -e all-plugin -- volume` in the `<folder_with_cinder_tempest_plugin>`, it says, that `unknown environment all-plugin`05:24
*** brinzhang has quit IRC05:27
masayukiganastzhyr: can you try like these steps? `cd <tempest_source_code_directory>; source .tox/all-plugin/bin/activate` `pip install -e <folder_with_cinder_tempest_plugin>` `deactivate` and then, run `tox -e all-plugin -- volume` in the <tempest_source_code_directory> ?05:39
*** brinzhang has joined #openstack-qa05:39
*** brinzhang_ has quit IRC05:42
masayukigah, the last command should be `tox -e all-plugin -- cinder_tempest_plugin` to run the plugin.05:43
*** udesale has joined #openstack-qa05:44
anastzhyrmasayukig: Perfect! At least, it starts running different tests!  Thank you!05:52
masayukigcool05:52
AJaegergmann, 682843 passed the recheck, could you review, please?05:57
*** pcaruana has joined #openstack-qa06:13
*** brinzhang_ has joined #openstack-qa06:24
*** brinzhang has quit IRC06:27
*** gcheresh_ has quit IRC06:44
*** slaweq has joined #openstack-qa06:47
*** noama has joined #openstack-qa06:52
*** brinzhang has joined #openstack-qa06:59
*** brinzhang_ has quit IRC07:01
*** brinzhang_ has joined #openstack-qa07:07
*** brinzhang has quit IRC07:10
*** tesseract has joined #openstack-qa07:12
*** tesseract has quit IRC07:14
*** tesseract has joined #openstack-qa07:14
*** tosky has joined #openstack-qa07:17
*** e0ne has joined #openstack-qa07:19
*** trident has quit IRC07:27
*** trident has joined #openstack-qa07:31
*** jpena|off is now known as jpena07:39
*** surpatil has quit IRC07:41
*** brinzhang has joined #openstack-qa07:47
*** brinzhang_ has quit IRC07:50
*** iurygregory has joined #openstack-qa07:59
*** gfidente has joined #openstack-qa08:00
*** rpittau|afk is now known as rpittau08:12
*** gcheresh_ has joined #openstack-qa08:13
*** larainema has joined #openstack-qa08:15
*** lucasagomes has joined #openstack-qa08:23
*** brinzhang_ has joined #openstack-qa08:25
*** brinzhang has quit IRC08:28
*** brinzhang has joined #openstack-qa08:34
*** brinzhang_ has quit IRC08:37
*** gcheresh_ has quit IRC08:38
*** ramishra has quit IRC08:43
*** surpatil has joined #openstack-qa08:46
*** brinzhang_ has joined #openstack-qa08:59
*** ramishra has joined #openstack-qa09:00
*** brinzhang has quit IRC09:03
*** dtantsur|afk is now known as dtantsur09:07
*** gcheresh_ has joined #openstack-qa09:25
*** iurygregory has quit IRC09:53
*** anastzhyr has quit IRC09:54
*** rcernin has quit IRC09:54
*** brinzhang has joined #openstack-qa10:00
*** brinzhang_ has quit IRC10:04
*** kopecmartin|off is now known as kopecmartin10:31
*** brinzhang_ has joined #openstack-qa10:32
*** brinzhang has quit IRC10:35
*** gcheresh_ has quit IRC10:40
*** markvoelker has joined #openstack-qa10:50
*** markvoelker has quit IRC10:56
*** rfolco|ruck is now known as rfolco|brb11:01
*** brinzhang has joined #openstack-qa11:03
*** brinzhang_ has quit IRC11:06
*** iurygregory has joined #openstack-qa11:17
*** jpena is now known as jpena|lunch11:27
*** rcernin has joined #openstack-qa11:30
*** brinzhang_ has joined #openstack-qa11:33
*** brinzhang has quit IRC11:36
*** raildo has joined #openstack-qa11:37
*** markvoelker has joined #openstack-qa11:44
*** dave-mccowan has joined #openstack-qa11:50
*** markvoelker has quit IRC11:55
*** rfolco|brb is now known as rfolco|ruck11:55
*** brinzhang has joined #openstack-qa12:03
*** brinzhang_ has quit IRC12:06
*** rh-jelabarre has joined #openstack-qa12:10
*** markvoelker has joined #openstack-qa12:10
*** Luzi has quit IRC12:11
*** larainema has quit IRC12:11
*** Luzi has joined #openstack-qa12:27
*** jpena|lunch is now known as jpena12:31
*** dviroel has joined #openstack-qa12:31
*** nweinber__ has joined #openstack-qa12:36
*** brinzhang_ has joined #openstack-qa12:41
*** brinzhang_ has quit IRC12:42
*** brinzhang_ has joined #openstack-qa12:42
*** brinzhang_ has quit IRC12:42
*** brinzhang_ has joined #openstack-qa12:43
*** brinzhang_ has quit IRC12:43
*** brinzhang has quit IRC12:44
*** brinzhang_ has joined #openstack-qa12:44
*** brinzhang_ has quit IRC12:44
*** soniya29 has quit IRC12:54
*** SurajPatil has joined #openstack-qa13:01
*** Luzi has quit IRC13:02
*** surpatil has quit IRC13:03
*** gcheresh_ has joined #openstack-qa13:04
*** mriedem has joined #openstack-qa13:15
openstackgerritMartin Kopec proposed openstack/tempest master: Add RadosGW gate  https://review.opendev.org/68641313:34
*** gcheresh_ has quit IRC13:37
*** udesale has quit IRC13:37
*** udesale has joined #openstack-qa13:37
*** markvoelker has quit IRC13:46
*** surpatil has joined #openstack-qa13:51
*** SurajPatil has quit IRC13:53
*** markvoelker has joined #openstack-qa13:56
*** rcernin has quit IRC13:57
*** jdwidari has joined #openstack-qa14:33
*** chandankumar is now known as raukadah14:35
*** surpatil has quit IRC14:49
*** surpatil has joined #openstack-qa14:52
*** markvoelker has quit IRC14:54
*** markvoelker has joined #openstack-qa14:54
openstackgerritMatt Riedemann proposed opendev/elastic-recheck master: Add query for hard reboot kernel fail bug 1847759  https://review.opendev.org/68895214:59
openstackbug 1847759 in tempest "reboot_server_hard can trigger corrupted file system" [Undecided,New] https://launchpad.net/bugs/184775914:59
*** trident has quit IRC15:13
openstackgerritSlawek Kaplonski proposed openstack/devstack master: Add possibility to configure manually MYSQL_SERVICE_NAME  https://review.opendev.org/68120115:17
*** trident has joined #openstack-qa15:17
*** mattw4 has joined #openstack-qa15:20
*** surpatil has quit IRC15:28
*** rfolco|ruck has quit IRC15:49
*** surpatil has joined #openstack-qa15:53
*** jpena is now known as jpena|off16:00
*** anastzhyr has joined #openstack-qa16:02
*** jdwidari has quit IRC16:04
*** tesseract has quit IRC16:08
*** gfidente has quit IRC16:08
*** rfolco has joined #openstack-qa16:15
*** rfolco has quit IRC16:18
*** rfolco has joined #openstack-qa16:18
*** rfolco is now known as rfolco|ruck16:20
*** samP has quit IRC16:21
*** samP has joined #openstack-qa16:31
*** ramishra has quit IRC16:34
*** noama has quit IRC16:38
*** markvoelker has quit IRC16:39
gmannAJaeger: +A16:39
*** udesale has quit IRC16:40
*** markvoelker has joined #openstack-qa16:49
*** rpittau is now known as rpittau|afk16:50
*** dtantsur is now known as dtantsur|afk16:51
*** mattw4 has quit IRC16:57
*** mattw4 has joined #openstack-qa17:00
*** e0ne has quit IRC17:01
*** markvoelker has quit IRC17:01
*** lucasagomes has quit IRC17:05
*** markvoelker has joined #openstack-qa17:13
*** markvoelker has quit IRC17:13
*** markvoelker has joined #openstack-qa17:14
*** gcheresh_ has joined #openstack-qa17:58
*** spsurya has quit IRC17:58
*** mattw4 has quit IRC18:13
*** mattw4 has joined #openstack-qa18:15
*** surpatil has quit IRC18:16
*** e0ne has joined #openstack-qa18:18
openstackgerritTom Barron proposed openstack/devstack-gate master: Capture nfs-ganesha logs and conf  https://review.opendev.org/62692118:19
*** mattw4 has quit IRC18:23
*** kopecmartin is now known as kopecmartin|off18:24
*** mattw4 has joined #openstack-qa18:25
AJaegerthanks, gmann18:28
*** iurygregory has quit IRC18:33
*** e0ne has quit IRC18:57
*** gcheresh_ has quit IRC18:58
openstackgerritMerged openstack/tempest master: switch to the newly created opensuse-15 nodeset  https://review.opendev.org/68284319:02
*** tosky has quit IRC19:30
*** lbragsta_ has joined #openstack-qa19:48
*** markvoelker has quit IRC19:58
*** markvoelker has joined #openstack-qa19:58
openstackgerritSlawek Kaplonski proposed openstack/devstack master: Add possibility to configure manually MYSQL_SERVICE_NAME  https://review.opendev.org/68120120:00
*** AJaeger has left #openstack-qa20:00
*** gcheresh_ has joined #openstack-qa20:04
*** anastzhyr has quit IRC20:12
mriedemclarkb: mtreinish: i'm thinking about dropping py2 support from elastic-recheck given https://storyboard.openstack.org/#!/story/2006736 - any feelings about that?20:12
mriedemit's master branch only and we don't release it, so...meh?20:12
clarkbmriedem: I think our current deployment may still be on trusty :/20:13
clarkbthat doesnt' mean no python3 but does mean it might be an older python320:13
clarkbI'm ok with it if that works, and we have to update that server anyway just priorities and stuff :/20:13
mriedemok, well using a capped irc package version is easy as well20:14
*** igordc has joined #openstack-qa20:15
*** mattw4 has quit IRC20:19
*** mattw4 has joined #openstack-qa20:22
*** pcaruana has quit IRC20:28
openstackgerritMatt Riedemann proposed opendev/elastic-recheck master: Cap irc package requirement for <py34  https://review.opendev.org/68903420:28
*** gcheresh_ has quit IRC20:30
mtreinishmriedem: I would check the launchpad lib stuff, that library was always problematic and might not have python 3 support20:42
mtreinishbut otherwise I'm in favor of it20:43
mriedemwe've already got a cap on the launchpadlib20:44
mriedemwell, cap on keyring which launchpadlib uses20:44
openstackgerritMatt Riedemann proposed opendev/elastic-recheck master: Hard-code os-brick into TestQueries.openstack_projects  https://review.opendev.org/68903920:47
mriedemclarkb: this unblocks e-r in the gate https://review.opendev.org/#/c/689034/20:47
clarkbapproved20:49
openstackgerritMatt Riedemann proposed opendev/elastic-recheck master: Add query for hard reboot kernel fail bug 1847759  https://review.opendev.org/68895220:50
openstackbug 1847759 in tempest "reboot_server_hard can trigger corrupted file system" [Undecided,New] https://launchpad.net/bugs/184775920:50
mriedemthanks20:50
openstackgerritMatt Riedemann proposed opendev/elastic-recheck master: Remove H233 from flake8 ignore list  https://review.opendev.org/68904120:56
openstackgerritMatt Riedemann proposed opendev/elastic-recheck master: Fix link formatting in CONTRIBUTING.rst  https://review.opendev.org/68904320:58
openstackgerritMerged opendev/elastic-recheck master: Cap irc package requirement for <py34  https://review.opendev.org/68903421:00
*** nweinber__ has quit IRC21:08
openstackgerritMerged opendev/elastic-recheck master: Add query for hard reboot kernel fail bug 1847759  https://review.opendev.org/68895221:13
openstackbug 1847759 in tempest "reboot_server_hard can trigger corrupted file system" [Undecided,New] https://launchpad.net/bugs/184775921:13
*** igordc has quit IRC21:19
*** igordc has joined #openstack-qa21:29
*** mriedem is now known as mriedem_afk21:46
openstackgerritRick Bartra proposed openstack/patrole master: Unskip test that relied on Neutron bug being fixed  https://review.opendev.org/68905221:48
*** mattw4 has quit IRC21:55
openstackgerritChris Wedgwood proposed openstack/tempest master: Update test_port_list_filter_by_ip pass conditions  https://review.opendev.org/67685221:56
*** mattw4 has joined #openstack-qa21:56
*** raildo has quit IRC21:59
*** slaweq has quit IRC22:00
*** markvoelker has quit IRC22:14
*** lbragsta_ has quit IRC22:26
*** dviroel has quit IRC22:57
*** rh-jelabarre has quit IRC23:03
*** anastzhyr has joined #openstack-qa23:06
*** rfolco has joined #openstack-qa23:25
*** rfolco|ruck has quit IRC23:25
*** mattw4 has quit IRC23:26
eanderssonIs there a common reason why a tempest test would be excluded?23:29
eanderssonhttps://github.com/openstack/senlin-tempest-plugin/blob/master/senlin_tempest_plugin/tests/integration/test_health_policy.py#L2523:29
eanderssonThis test is not being run, but no warning or error etc.23:29
clarkbeandersson: does it have a skipped state or it isn't part of the results at all?23:29
clarkbif it has a skipped result that implies something in the test code is deciding at runtime to skip it. If it doesn't run at all I would dobule check your stestr test selection regex23:30
eanderssonnot part of the result at all23:30
eanderssonregex is just23:30
eandersson> tempest_test_regex: senlin_tempest_plugin.tests.integration23:30
eanderssonhttps://github.com/openstack/senlin/blob/master/.zuul.yaml#L8823:30
eanderssone.g. https://887afd835f23e63b7b30-3214537fb64eb932a8fc7ad03234afd5.ssl.cf2.rackcdn.com/688847/2/check/senlin-dsvm-tempest-py27-integration/47bb656/testr_results.html.gz23:31
clarkbdoes stestr support the discover command?23:31
clarkbthat can help you debug probably23:31
eanderssonIf I run it locally it works fin23:33
*** rfolco has quit IRC23:34
*** lbragsta_ has joined #openstack-qa23:34
*** rfolco has joined #openstack-qa23:34
eanderssonhmm maybe that skip statement is just silent23:41
eanderssonis tempest in a venv?23:41
*** nweinber__ has joined #openstack-qa23:41
*** lbragsta_ has quit IRC23:45
*** rfolco has quit IRC23:48
*** nweinber__ has quit IRC23:56

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