From: Jonathan Rajotte Date: Thu, 30 Jul 2020 14:19:43 +0000 (-0400) Subject: barectf: update build recipe for poetry and tox X-Git-Url: http://git.lttng.org./?a=commitdiff_plain;h=8b35846606a4b1a40fdbabb1b8c9839203ecfce7;p=lttng-ci.git barectf: update build recipe for poetry and tox Signed-off-by: Jonathan Rajotte --- diff --git a/scripts/barectf/build.sh b/scripts/barectf/build.sh index 5eafb08..9f07c6d 100755 --- a/scripts/barectf/build.sh +++ b/scripts/barectf/build.sh @@ -37,15 +37,14 @@ set +u set -u # install setuptools first -pip install setuptools +pip install tox poetry cd "$SRCDIR" # install barectf in virtual environment -./setup.py install +poetry config virtualenvs.create false # test -cd tests -./test.bash +tox -v # EOF