From 6caa4134568ed5e6de6e074022eadead22443f05 Mon Sep 17 00:00:00 2001 From: "alessandro.molina" Date: Thu, 24 Mar 2022 16:06:17 -0400 Subject: [PATCH] add coveralls --- .github/workflows/run-tests.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index eef4e17..c7ca184 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -19,11 +19,12 @@ jobs: python -m pip install --upgrade pip pip install -U --upgrade-strategy=eager --pre -e .[testing,webassets] pip install 'pycparser==2.18' - pip install 'coveralls' - name: Test with pytest run: | pytest -v --cov=dukpy --cov-report=term-missing - name: Publish to coveralls.io - uses: coverallsapp/github-action@v1.1.2 - with: - github-token: ${{ github.token }} \ No newline at end of file + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + pip install 'coveralls' + coveralls \ No newline at end of file