From 54649b83e25b042fafec4d2d7286694200255151 Mon Sep 17 00:00:00 2001 From: Carlota de la Vega Date: Sat, 1 Jun 2024 20:42:00 +0200 Subject: [PATCH] Change commands to use directly poetry --- .github/workflows/app.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/app.yml b/.github/workflows/app.yml index e84ce03..cf185ce 100644 --- a/.github/workflows/app.yml +++ b/.github/workflows/app.yml @@ -30,10 +30,8 @@ jobs: - name: Lint with pylint run: | - pip install pylint - pylint --rcfile=.pylintrc src + poetry run pylint --rcfile=.pylintrc src - name: Test with pytest run: | - pip install pytest - pytest -s \ No newline at end of file + poetry run pytest -s \ No newline at end of file