diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index 87a759b..d21b750 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -59,6 +59,11 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install Python dependencies + run: | + python3 -m pip install --upgrade pip + python3 -m pip install .[test] + - name: Generate coverage report run: | python3 -m pytest --cov-report term --cov-report xml:cobertura.xml --cov=pina @@ -70,4 +75,4 @@ jobs: threshold: 80.123 fail: true publish: true - coverage-summary-title: "Code Coverage Summary" \ No newline at end of file + coverage-summary-title: "Code Coverage Summary"