From f6c9d138c5bfaaeccfed28ae39003e6c452fef3b Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sun, 28 Aug 2022 12:30:28 -0700 Subject: [PATCH] install pytest --- .github/workflows/ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7e3a8106..e35521b5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,8 +29,9 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python -m pip install --upgrade pip - python -m pip install -e homeassistant/ + pip install --upgrade pip + pip install --upgrade pip pytest + pip install -e homeassistant/ - name: Run pytest timeout-minutes: 60 run: |