diff --git a/.cruft.json b/.cruft.json index 0b39de3..a5c3a7d 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "https://github.com/escaped/cookiecutter-pypackage.git", - "commit": "48050624afcd08ab634f62ecbdad08e6da2ef216", + "commit": "6efc447310a6a1b488583c72cc2e5bc621e4c290", "context": { "cookiecutter": { "author": "Alexander Frenzel", diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 08c028b..c9d8b19 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,6 @@ ## Description -Please include a summary about the proposed changes. +Please include a summary of the proposed changes. Fixes #(issue) @@ -8,6 +8,6 @@ Fixes #(issue) - [ ] 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` diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 774afd3..df07f8d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/setup.cfg b/setup.cfg index 87609bd..3e5f77a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -17,6 +17,7 @@ max-complexity = 9 [coverage:run] +relative_files = True branch = True include = networkx_astar_path/* omit =