Skip to content

Commit

Permalink
Merge e31e9cb into cc6d3d9
Browse files Browse the repository at this point in the history
  • Loading branch information
escaped committed Dec 19, 2020
2 parents cc6d3d9 + e31e9cb commit ea49568
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "https://github.com/escaped/cookiecutter-pypackage.git",
"commit": "48050624afcd08ab634f62ecbdad08e6da2ef216",
"commit": "6efc447310a6a1b488583c72cc2e5bc621e4c290",
"context": {
"cookiecutter": {
"author": "Alexander Frenzel",
Expand Down
4 changes: 2 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
## Description

Please include a summary about the proposed changes.
Please include a summary of the proposed changes.

Fixes #(issue)

## Checklist

- [ ] Tests covering the new functionality have been added
- [ ] Code builds clean without any errors or warnings
- [ ] Documention has been updated
- [ ] Documentation has been updated
- [ ] Changes have been added to the `CHANGELOG.md`
- [ ] You added yourself to the `CONTRIBUTORS.md`
30 changes: 13 additions & 17 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,24 +48,20 @@ jobs:
run: tox
env:
PLATFORM: ${{ matrix.platform }}
- name: coveralls
run: coveralls
env:
COVERALLS_PARALLEL: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true
debug: true

coveralls:
coveralls_finish:
needs: [test]
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install coveralls
- name: coveralls
run: coveralls --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Coveralls Finished
uses: AndreMiras/coveralls-python-action@develop
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
debug: true
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ max-complexity = 9


[coverage:run]
relative_files = True
branch = True
include = networkx_astar_path/*
omit =
Expand Down

0 comments on commit ea49568

Please sign in to comment.