jira

Jmeter集成Jira提交缺陷

匿名 (未验证) 提交于 2019-12-02 23:05:13
笔者曾在文章 《Jmeter排忧解难―生成excel结果文件》 聊到了一种提高接口测试效率的方法。今天,咱们接着对“提高接口测试效率”这个话题做更深入的探讨。作为一名接口测试人员,我们是否一直在不厌其烦地重复以下工作。 《Jmeter排忧解难―生成excel结果文件》 一文),然后编码提取不通过的案例信息,依赖java swing提供的JTable等控件,展示失败案例的执行结果,由测试人员进行确认,最后通过jira rest api提交缺陷。 测试案例模板 案例执行结果 不通过案例报告 读取不通过案例信息 不通过案例信息 预期结果、实际结果、缺陷描述等信息编辑 不通过案例信息写入JTable 确认并提交缺陷 附件目录如下图所示: 附件目录(注意二级目录文件夹使用案例编号作为唯一标识) 缺陷描述模板 缺陷附件 JIRA REST API 。 作者:Tomandy 链接:https://www.jianshu.com/p/a8d49cbe0868 来源:简书 简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

JIRA安装与使用

匿名 (未验证) 提交于 2019-12-02 23:04:42
【 文件下载与说明 环境介绍: 系统: JDK : Mysql : JIRA : 一、安装 JDK 1 、解压 JDK [root@linuxidc jira]# tar -zxf jdk-7u60-ea-bin-b15-linux-x64-16_apr_2014.tar.gz -C /usr/local/ 2 、创建软连接,将 JDK 追加至 bin 下: [root@linuxidc bin]# cd /usr/bin/ [root@linuxidc bin]# ln -s -f /usr/local/jdk1.7.0_60/jre/bin/java [root@linuxidc bin]# ln -s -f /usr/local/jdk1.7.0_60/bin/javac 3 、配置 JDK 环境: [root@linuxidc bin]# vim /etc/profile [root@linuxidc bin]# tail -5 /etc/profile #jdk export JAVA_HOME=/usr/local/jdk1.7.0_60 export JAVA_BIN=/usr/local/jdk1.7.0_60/bin export PATH=$PATH:$JAVA_HOME/bin export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:

00011 python访问jira

匿名 (未验证) 提交于 2019-12-02 22:51:30
安装 pip3 install jira 简单使用 from jira import JIRA jira = JIRA(basic_auth=('username', 'password'), options={'server': 'https://jira.test.com'}) issue = jira.issue('project-100') print(issue) print(issue.fields.status) print(issue.fields.priority) print(issue.fields.summary) print(issue.fields.reporter) 来源:博客园 作者: python-abc 链接:https://www.cnblogs.com/python-abc/p/11776293.html

Jira: assign an existing git branch to an issue

回眸只為那壹抹淺笑 提交于 2019-12-02 21:48:11
In JIRA connected with STASH you can create a feature branch for an issue using the button 'create branch'. (That is nice to track the commits in this issue.) If a developer started working but did not know that there is such an issue he did not click the 'create branch'. Is there any possibility to assign an existing git branch to an issue? ex-Stash developer here. Yes and no. Creating the branch though the UI is just a convenience. The important thing is that the name contains the JIRA key. If only one developer is working on the branch, it's fairly easy to just rename (delete + add) a

JIRA JQL searching by date - is there a way of getting Today() (Date) instead of Now() (DateTime)

本秂侑毒 提交于 2019-12-02 21:00:24
I am trying to create some Issue Filters in JIRA based on CreateDate . The only date/time function I can find is Now() and searches relative to that, i.e. "-1d", "-4d" etc. The only problem with this is that Now() is time specific so there is no way of getting a particular day's created issues. i.e. Created < Now() AND Created >= "-1d" when run at 2pm today will show all issues created from 2pm yesterday to 2pm today when run at 9am tomorrow will show all issues created from 9am today to 9am tomorrow What I want is to be able to search for all issues created from 00:00 to 23:59 on any day. Is

updating status in jira via php

雨燕双飞 提交于 2019-12-02 20:22:46
问题 im using a email client that i build to update jira tasks. i have managed to change the assignee and the summary through it. but i cannot seems to find a way to update the status. following is the code i used. $resolution->id="4"; $update->transitions= array($resolution); $queryIssue = new Jira($config); $queryIssue->updateTransition($query,$update); the class: public function updateTransition($issueKey,$json){ $this->request->openConnect('https://'.$this->host.'/rest/api/latest/issue/REC-143

Find issues that were ever assigned to me

♀尐吖头ヾ 提交于 2019-12-02 19:54:39
I am trying to create a filter to search for all issues that were ever assigned to me, even after the assignee is changed. I cant find the appropriate search parameters for this. Is it even possible in jira? Check out the toolkit plugin https://studio.plugins.atlassian.com/wiki/display/JTOOL/JIRA+Toolkit+Plugin It has a custom field 'Participant' which allows you to find all issues that you raised, were assigned to or commented on. Francis assignee = currentUser() OR assignee was currentUser() should do it I'm not sure if things have changed with JIRA since previous answers were written, but

Jira for bug tracking and customer support?

微笑、不失礼 提交于 2019-12-02 19:45:26
We are thinking of using Jira for bug tracking and to integrate it with Git to connect bug fixes with version handling. Do you recommend Jira also for customer support or should we find another system like for example Zendesk for that purpose? I know that it is possible somehow to integrate for example Hipchat with Jira to enable chat functionality with customers but is Jira too complex for Customer Service to handle? What is your experience? We use Jira for customer support, but we found that Jira is missing many must-have features that are needed for this. that's why we make many changes.