From de29bf34ef3eaaf822db854d0c968c8fd5836f0e Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Wed, 31 Jul 2024 16:03:22 -0700 Subject: [PATCH] install all extras when running poetry inside of CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 543db54..9ad4f3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: pip3 install poetry - name: Install meshtastic from local run: | - poetry install + poetry install --all-extras poetry run meshtastic --version - name: Run pylint run: poetry run pylint meshtastic examples/ --ignore-patterns ".*_pb2.pyi?$" @@ -68,5 +68,5 @@ jobs: run: | python -m pip install --upgrade pip pip3 install poetry - poetry install + poetry install --all-extras poetry run meshtastic --version