From c1bd455965244929b13d0998fde4c1d8859ff5a1 Mon Sep 17 00:00:00 2001 From: tsukumi Date: Tue, 30 Jul 2024 04:55:03 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20CI=20=E3=81=AE=E5=AE=9F=E8=A3=85?= =?UTF-8?q?=E3=83=9F=E3=82=B9=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Windows では taskipy 管理の開発コマンドは動作しないことを失念していた… --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 836092c..5229775 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,11 +45,12 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python -m pip install --upgrade pip taskipy - task install + python -m pip install --upgrade pip + pip uninstall -y setuptools # <- magic! + pip install -e '.[dev,test]' - name: Lint with pysen run: | - task lint + pysen run lint - name: Test with pytest run: | - task test + pytest