From 3c59b53ab1209fb856cb5511420dd4ca228bcd7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20S=C3=A9chet?= Date: Sat, 4 Mar 2023 18:40:54 +0100 Subject: [PATCH] ci: run javascript unit tests on Jenkins (#75133) --- tox.ini | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 05bf014..c8b4cc1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,12 +1,14 @@ [tox] -envlist = codestyle-pylint +envlist = codestyle-pylint, test toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/gadjo/{env:BRANCH_NAME:} [testenv] +whitelist_externals = npm deps = codestyle: pre-commit pylint: pylint pylint: pylint-django commands = codestyle: pre-commit run --all-files --show-diff-on-failure - pylint: ./pylint.sh gadjo/ + test: npm clean-install + test: npm test -- 2.39.2