Skip to content

Commit

Permalink
Adjust test_coverage.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
breimanntools committed Apr 9, 2024
1 parent 86593f4 commit 7dedf32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,15 @@ jobs:
pip install -r requirements.txt
pip install pytest pytest-cov
- name: Run tests with coverage
- name: Run tests with coverage and generate XML report
run: |
pytest --cov=./
pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
fail_ci_if_error: true
env:
MPLBACKEND: Agg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def adjust_vmin_vmax(vmin=None, vmax=None):
return vmin, vmax



def call_aaclust_plot_correlation(df_corr=None, **kwargs):
""""""
aac_plot = aa.AAclustPlot(verbose=False)
Expand Down

0 comments on commit 7dedf32

Please sign in to comment.