Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 13 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ jobs:
-- -rFEx --durations 10 --color yes # pytest args
- name: Generate coverage report
run: pipx run coverage lcov -o coverage.lcov
# - name: Upload partial coverage report
# uses: coverallsapp/github-action@main
# if: ${{ matrix.platform != 'macos-12' }}
# with:
# path-to-lcov: coverage.lcov
# github-token: ${{ secrets.GITHUB_TOKEN }}
# flag-name: ${{ matrix.platform }} - py${{ matrix.python }}
# parallel: true
- name: Upload partial coverage report
uses: coverallsapp/github-action@main
if: ${{ matrix.platform != 'macos-12' }}
with:
path-to-lcov: coverage.lcov
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: ${{ matrix.platform }} - py${{ matrix.python }}
parallel: true
- name: Save coverage report
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python == '3.11' }}
uses: actions/upload-artifact@v4
Expand All @@ -101,13 +101,11 @@ jobs:
needs: test
runs-on: ubuntu-latest
steps:
- run: |-
echo "Mock"
# - name: Finalize coverage report
# uses: coverallsapp/github-action@main
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# parallel-finished: true
- name: Finalize coverage report
uses: coverallsapp/github-action@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true

benchmark:
needs: finalize
Expand Down Expand Up @@ -166,7 +164,6 @@ jobs:

- name: Run benchmark
id: benchmark
if: false
env:
QUICK_BENCHMARK: ${{ ! contains( github.event.pull_request.labels.*.name, 'benchmark') }}
run: |-
Expand Down
6 changes: 6 additions & 0 deletions docs/assets/js/posthog.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ hooks:
extra_javascript:
- assets/js/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
- assets/js/posthog.js

extra_css:
- assets/css/custom.css
Loading