Skip to content

Commit

Permalink
Adding coverage to examples
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Apr 18, 2024
1 parent ea77fe4 commit 37ccc9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,10 @@ jobs:
- name: Test Examples
if: needs.setup.outputs.code_change == 'true'
run: |
pixi run -e ${{ matrix.environment }} test-example
pixi run -e ${{ matrix.environment }} test-example --cov=./holoviews --cov-report=xml --cov-append
- uses: codecov/codecov-action@v4
if: needs.setup.outputs.code_change == 'true'
with:
# fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}

ui_test_suite:
Expand All @@ -174,7 +173,6 @@ jobs:
- uses: codecov/codecov-action@v4
if: needs.setup.outputs.code_change == 'true'
with:
# fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}

core_test_suite:
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ filterwarnings = [
"ignore:Passing a (SingleBlockManager|BlockManager) to (Series|GeoSeries|DataFrame|GeoDataFrame) is deprecated:DeprecationWarning", # https://github.com/holoviz/spatialpandas/issues/137
# 2024-02
"ignore:The current Dask DataFrame implementation is deprecated:DeprecationWarning", # https://github.com/dask/dask/issues/10917
# 2024-04
"ignore:No data was collected:coverage.exceptions.CoverageWarning", # https://github.com/pytest-dev/pytest-cov/issues/627
]

[tool.coverage]
Expand Down

0 comments on commit 37ccc9b

Please sign in to comment.