From 13b06ee04ae44445910ceba5bfe02b4763f09c53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bonhomme?= Date: Sat, 14 Dec 2019 15:29:55 +0100 Subject: [PATCH] restored export PATH commands --- .builds/debian.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.builds/debian.yml b/.builds/debian.yml index 3f3713e..851e2a0 100644 --- a/.builds/debian.yml +++ b/.builds/debian.yml @@ -13,11 +13,14 @@ tasks: cd Stegano poetry install - lint: | + export PATH="$PATH:/home/build/.local/bin" # stop the build if there are Python syntax errors or undefined names poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + # exit-zero treats all errors as warnings. poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - test: | + export PATH="$PATH:/home/build/.local/bin" poetry run nosetests - typecheck: | + export PATH="$PATH:/home/build/.local/bin" poetry run python tools/run_mypy.py