diff --git a/.ci_support/environment.yml b/.ci_support/environment.yml index 172a4a5..ed94db6 100644 --- a/.ci_support/environment.yml +++ b/.ci_support/environment.yml @@ -2,9 +2,7 @@ channels: - conda-forge dependencies: - defusedxml =0.7.1 - - coveralls - coverage - - codacy-coverage - pandas =2.1.1 - pyyaml =6.0.1 - jinja2 =3.1.2 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index da96941..040080a 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -49,12 +49,9 @@ jobs: run: | pip install --no-deps . - name: Test - shell: bash -l {0} - run: coverage run --omit pysqa/_version.py -m unittest discover tests - - name: Coverage shell: bash -l {0} run: | + coverage run --omit pysqa/_version.py -m unittest discover tests coverage combine - coveralls - coverage xml - python-codacy-coverage -r coverage.xml + - name: Coveralls + uses: coverallsapp/github-action@v2