File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed
Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 2424 run : python -m pylint --output-format=text src/sdynpy | tee lint.log || pylint-exit $?
2525 - name : pytest
2626 run : python -m pytest --verbose --cov=src/sdynpy --cov-report xml
27+ - name : coveralls
28+ run : |
29+ python -m pip install coveralls
30+ coveralls --service=github
31+ env :
32+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
33+ - name : codecov
34+ uses : codecov/codecov-action@v2
35+ with :
36+ name : codecov-umbrella
37+ verbose : true
Original file line number Diff line number Diff line change @@ -24,4 +24,5 @@ docs/build/**
2424build /**
2525dist /**
2626reports /**
27- ** /.ipynb_checkpoints /**
27+ ** /.ipynb_checkpoints /**
28+ ** .vscode /
Original file line number Diff line number Diff line change 22Structural Dynamics Python Libraries
33####################################
44
5- |documentation | |build | |pylint |
5+ |documentation | |build | |codecov | | coveralls | | pylint |
66
77This repository houses SDynPy, a Python module built for doing structural dynamics analysis using Python.
88It contains core objects that define test geometry and data. It contains readers and writers for common data formats.
@@ -28,3 +28,9 @@ Information
2828
2929.. |pylint | image :: https://raw.githubusercontent.com/sandialabs/sdynpy/gh-pages/pylint.svg
3030 :target: https://github.com/sandialabs/sdynpy
31+
32+ .. |coveralls | image :: https://img.shields.io/coveralls/github/sandialabs/sdynpy?logo=coveralls&label=Coveralls
33+ :target: https://coveralls.io/github/sandialabs/sdynpy?branch=main
34+
35+ .. |codecov | image :: https://img.shields.io/codecov/c/github/sandialabs/sdynpy?label=Codecov&logo=codecov
36+ :target: https://codecov.io/gh/sandialabs/sdynpy
You can’t perform that action at this time.
0 commit comments