From ebeca9bcc22b3e263fbc49f3ce3ef38174aa74b6 Mon Sep 17 00:00:00 2001 From: Jamie Bliss Date: Wed, 20 Nov 2024 16:28:14 -0500 Subject: [PATCH] Strip some missed poetry This is a hatchling project --- .github/workflows/pytest.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 845cda1..5d419de 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -13,14 +13,12 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Install poetry - run: pipx install poetry - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: poetry - name: Install Dependencies - run: poetry install + run: pip install pytest - name: Run tests - run: poetry run pytest --verbose + run: pytest --verbose