aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorIikka Eklund <iikka.eklund@qt.io>2019-10-18 12:31:21 +0300
committerIikka Eklund <iikka.eklund@qt.io>2020-06-09 10:19:18 +0000
commit6828e6c9bba3db77dd810b35dfed6074b2c3f06d (patch)
tree370efd9a3ab57c429ddfb3bce7681f2399f8b915 /Pipfile
parentbef84403d7c1166d920de920334f0075bbeaf7c7 (diff)
Add CI enablers
CI should be executed for qtsdk as well. - coin/module_config.yaml for integration with Qt CI - Makefile for pipenv creation using Pipfile and Pipfile.lock - qtsdktest target (Makefile) when executed by Qt CI - this runs 'stestr run' The Makefile serves as placeholder for follow-ups: - mypy - flake8 - etc. Task-number: QTQAINFRA-3710 Change-Id: Iaaffcf78ddb4559bf8f1700fb3cb713abe85f5ba Reviewed-by: Antti Kokko <antti.kokko@qt.io>
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile23
1 files changed, 23 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
new file mode 100644
index 000000000..05be73116
--- /dev/null
+++ b/Pipfile
@@ -0,0 +1,23 @@
+[[source]]
+verify_ssl = true
+url = "https://pypi.org/simple"
+name = "pypi"
+
+[dev-packages]
+pylint = "*"
+rope = "*"
+autopep8 = "*"
+
+[packages]
+sh = "==1.12.14"
+ddt = "==1.1.1"
+python-dateutil = "==2.6.1"
+mypy = "==0.720"
+typed-ast = "==1.4.0"
+"flake8" = "==3.7.8"
+rainbow_logging_handler = "==2.2.2"
+gitpython = "*"
+stestr = "*"
+typing = "*"
+wget = "*"
+colorlog = "*"