Skip to content

Commit

Permalink
Merge branch 'master' of github.com:NeuralEnsemble/lazyarray
Browse files Browse the repository at this point in the history
* 'master' of github.com:NeuralEnsemble/lazyarray:
  try re-enabling coveralls in CI
  • Loading branch information
apdavison committed Sep 5, 2024
2 parents 4fc72ab + cb0bce9 commit 4b6b32e
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,27 +35,27 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r .github/workflows/requirements-${{ matrix.req-version }}.txt
pip install pytest pytest-cov
pip install pytest pytest-cov coveralls
pip install .
- name: Run tests
run: |
pytest --cov=lazyarray -v
# - name: Upload coverage data
# run: |
# coveralls --service=github
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# COVERALLS_FLAG_NAME: ${{ matrix.test-name }}
# COVERALLS_PARALLEL: true
# coveralls:
# name: Indicate completion to coveralls.io
# needs: test
# runs-on: ubuntu-latest
# container: python:3-slim
# steps:
# - name: Finished
# run: |
# pip3 install --upgrade coveralls
# coveralls --service=github --finish
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload coverage data
run: |
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: ${{ matrix.test-name }}
COVERALLS_PARALLEL: true
coveralls:
name: Indicate completion to coveralls.io
needs: test
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Finished
run: |
pip3 install --upgrade coveralls
coveralls --service=github --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4b6b32e

Please sign in to comment.