Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
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
13 changes: 7 additions & 6 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
if: ${{ runner.python-version }} != "3.9"
run: make -f Makefile test-pytest ;
- name: Upload Python ${{ matrix.python-version }} coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
Expand All @@ -235,7 +235,7 @@ jobs:
verbose: true
fail_ci_if_error: false
- name: Upload Python ${{ matrix.python-version }} Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Test-Report-${{ matrix.os }}-${{ matrix.python-version }}
path: ./test-reports/
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
if: ${{ runner.python-version }} != "3.9"
run: make -f Makefile test-pytest ;
- name: Upload Python ${{ matrix.python-version }} coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
Expand All @@ -319,7 +319,8 @@ jobs:
verbose: true
fail_ci_if_error: false
- name: Upload Python ${{ matrix.python-version }} Artifact
uses: actions/upload-artifact@v3
if: ${{ runner.python-version }} != "3.11"
uses: actions/upload-artifact@v4
with:
name: Test-Report-${{ matrix.os }}-${{ matrix.python-version }}
path: ./test-reports/
Expand Down Expand Up @@ -430,7 +431,7 @@ jobs:
cp -vf ./coverage.xml ./test-reports/coverage.xml || true ;
shell: bash
- name: Upload Python ${{ matrix.python-version }} coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./test-reports/coverage_supplement.xml
Expand All @@ -440,7 +441,7 @@ jobs:
verbose: true
fail_ci_if_error: false
- name: Upload Extra Python ${{ matrix.python-version }} Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Integration-Test-Report-${{ matrix.os }}-${{ matrix.python-version }}
path: ./test-reports/
Expand Down
1 change: 1 addition & 0 deletions pythonrepo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#! /usr/bin/env python3
# -*- coding: utf-8 -*-

# Python Repo Template
Expand Down
4 changes: 2 additions & 2 deletions pythonrepo/pythonrepo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3
# -*- coding: utf-8 -*-

# Python Repo Template
Expand Down Expand Up @@ -65,7 +65,7 @@ def NoOp(*args, **kwargs):
# More boiler-plate-code


TASK_OPTIONS = dict({
TASK_OPTIONS = dict({ # skipcq: PTC-W0020
'noop': NoOp
})
"""The callable function tasks of this program."""
Expand Down