summaryrefslogtreecommitdiffstats
path: root/scripts/jira/jira-bug-closer/Pipfile
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@qt.io>2019-03-26 09:27:36 +0100
committerFrederik Gladhorn <frederik.gladhorn@qt.io>2019-03-29 11:46:56 +0000
commitba041bc942056d52804acd5011ae5fe7877be045 (patch)
treef1a4540219f5287f395b6d9d1e9eb6e1695048ba /scripts/jira/jira-bug-closer/Pipfile
parentdc4cbd9fb654c1c0e06f7ea3183602fa714c4cb6 (diff)
Initial version of the JIRA-Gerrit bot
This bot listens to Gerrit ssh events and closes JIRA issues when the commit message contains a Fixes: QTBUG-### line. Change-Id: I6d68b69e624143e2aae84ad0b172583d3855703d Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@qt.io>
Diffstat (limited to 'scripts/jira/jira-bug-closer/Pipfile')
-rw-r--r--scripts/jira/jira-bug-closer/Pipfile23
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/jira/jira-bug-closer/Pipfile b/scripts/jira/jira-bug-closer/Pipfile
new file mode 100644
index 00000000..f38cbfdc
--- /dev/null
+++ b/scripts/jira/jira-bug-closer/Pipfile
@@ -0,0 +1,23 @@
+[[source]]
+url = "https://pypi.org/simple"
+verify_ssl = true
+name = "pypi"
+
+[packages]
+jira = "*"
+asyncssh = "*"
+coloredlogs = "*"
+
+[dev-packages]
+pylint = "*"
+ipython = "*"
+nose = "*"
+pytest = "*"
+pytest-cov = "*"
+rope = "*"
+mypy = "*"
+"flake8" = "*"
+pytest-asyncio = "*"
+
+[requires]
+python_version = "3.6"