From 278fa627065f36512024d46ae7a2781abcb539fe Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 9 Aug 2019 16:04:33 +0200 Subject: [PATCH] Lint: Run lint unit tests on Python 3 as well. --- .circleci/config.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4e242c2bd3..2b1541524d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -62,6 +62,18 @@ jobs: # - run: # name: "Run deploy" # command: ./tools/scripts/deploy.sh + "Project lint unit tests on Python 3": + docker: + - image: circleci/python:3.7.4 + working_directory: ~/test262 + steps: + - checkout + - run: + name: "Install requirements for linter tool" + command: python -m pip install --user --requirement tools/lint/requirements.txt + - run: + name: "Test the lint tool" + command: ./tools/lint/test/run.py "V8: New or modified tests execution": docker: - image: *node_latest @@ -125,6 +137,7 @@ workflows: Tools: jobs: - "Project lint, generation tests and build" + - "Project lint unit tests on Python 3" Tests execution: jobs: - "ChakraCore: New or modified tests execution"