From d34af88e4d9ad24d7112aa2fda8b9122e723a3e8 Mon Sep 17 00:00:00 2001 From: julia-sprenger <144245197+julia-sprenger@users.noreply.github.com> Date: Wed, 25 Sep 2024 16:05:33 +0200 Subject: [PATCH] [CI] Comment clarifications --- .github/workflows/python-app.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 405ecd9..38248a9 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -1,7 +1,6 @@ -# This workflow will install Python dependencies, run tests and lint with a single version of Python -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python +# This workflow will run package tests -name: Python application +name: Python tests on: push: @@ -23,10 +22,10 @@ jobs: uses: actions/setup-python@v5 with: python-version: "3.10" - - name: Install dependencies + - name: Install hatch run: | python -m pip install --upgrade pip pip install hatch - - name: Test with pytest + - name: Run tests using hatch run: | hatch test