This is an automated email from the ASF dual-hosted git repository. dill0wn pushed a commit to branch dw/8427 in repository https://gitbox.apache.org/repos/asf/allura.git
commit e2b67eaf7f9b3392b9122a663eb6549a91663bc1 Author: Dillon Walls <[email protected]> AuthorDate: Mon Apr 25 09:28:26 2022 -0400 fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! [#8427] fix jenkins failing on forgegit --- scripts/jenkins-python3.7.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/jenkins-python3.7.sh b/scripts/jenkins-python3.7.sh index b26060b99..0fdf76515 100755 --- a/scripts/jenkins-python3.7.sh +++ b/scripts/jenkins-python3.7.sh @@ -108,8 +108,8 @@ echo "Run: tests" echo "=============================================================================" # use "Allura* Forge* scripts" instead of "." so that .allura-venv doesn't get checked too (and '.' gives './' prefixed results which don't work out) -docker-compose exec -T web pyflakes Allura* Forge* scripts | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' > pyflakes.txt -docker-compose exec -T web pycodestyle Allura* Forge* scripts > pep8.txt +docker-compose exec -T web bash -c "pyflakes Allura* Forge* scripts | awk -F\: '{printf \"%s:%s: [E]%s\n\", \$1, \$2, \$3}' > pyflakes.txt" +docker-compose exec -T web bash -c "pycodestyle Allura* Forge* scripts > pep8.txt" # TODO: ALLURA_VALIDATION=all docker-compose exec -T -e LANG=en_US.UTF-8 web ./run_tests --with-xunitmp # --with-coverage --cover-erase
