[PATCH] D69052: [LNT] Python 3 support: enable testing for Python 3
Thomas Preud'homme via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 16 09:41:24 PDT 2019
thopre created this revision.
thopre added reviewers: cmatthews, hubert.reinterpretcast, kristof.beyls.
thopre added a parent revision: D69048: [LNT] Python 3 support: run tests with UTF-8 encoding.
thopre added a child revision: D69053: [LNT] Switch docker image to Python 3.
Now that all tests are passing in Python 3 enable testing for Python 3
in addition of testing for Python 2.
https://reviews.llvm.org/D69052
Files:
tox.ini
Index: tox.ini
===================================================================
--- tox.ini
+++ tox.ini
@@ -11,6 +11,7 @@
[tox]
envlist = py27
+ py3
mypy
flake8
@@ -31,6 +32,7 @@
commands =
# No where close to passing yet, but nice to have.
- mypy --junit-xml=junit-{envname}.xml --py2 --ignore-missing-imports lnt
+ - mypy --junit-xml=junit-{envname}.xml --ignore-missing-imports lnt
[testenv:flake8]
skip_install = true
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D69052.225247.patch
Type: text/x-patch
Size: 480 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191016/e0738904/attachment.bin>
More information about the llvm-commits
mailing list