From c8268710b77c706f02487e907339f904c12397c9 Mon Sep 17 00:00:00 2001 From: Ali-Tehrani Date: Wed, 10 Jan 2024 13:31:48 -0500 Subject: [PATCH] Add pytest coverage comment --- .github/workflows/pytest.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index dfff6647..10c71b0b 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -20,18 +20,22 @@ jobs: steps: - uses: "actions/checkout@v3" + - name: Setup python for test ${{ matrix.py }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.py }} + - name: Install dependencies for testing run: | pip install --upgrade pip pip install pytest pytest-md pytest-emoji pytest-cov + - name: Install development version run: | # Need editable mode in order to include the test files pip install -e . + - name: Run pytest uses: pavelzw/pytest-action@v2 with: