Skip to content

Commit 8f27622

Browse files
[repo-helper] Configuration Update (#24)
* Updated files with 'repo_helper'. * Updated files with 'repo_helper'. Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent fdc03f4 commit 8f27622

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: "windows-2019"
2222
continue-on-error: ${{ matrix.config.experimental }}
2323
env:
24-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-rc.2,pypy-3.6,pypy-3.7'
24+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,pypy-3.6,pypy-3.7'
2525

2626
strategy:
2727
fail-fast: False
@@ -31,7 +31,7 @@ jobs:
3131
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3232
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3333
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
34-
- {python-version: "3.10.0-rc.2", testenvs: "py310-dev,build", experimental: True}
34+
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: True}
3535
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3636
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3737

.github/workflows/python_ci_linux.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "ubuntu-20.04"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-rc.2,pypy-3.6,pypy-3.7'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,pypy-3.6,pypy-3.7'
2626

2727
strategy:
2828
fail-fast: False
@@ -32,7 +32,7 @@ jobs:
3232
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
35-
- {python-version: "3.10.0-rc.2", testenvs: "py310-dev,build", experimental: True}
35+
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: True}
3636
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3737
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3838

@@ -101,21 +101,26 @@ jobs:
101101
path: coverage
102102

103103
- name: Display structure of downloaded files
104+
id: show
104105
run: ls -R
105106
working-directory: coverage
107+
continue-on-error: true
106108

107109
- name: Combine Coverage 👷
110+
if: ${{ steps.show.outcome != 'failure' }}
108111
run: |
109112
shopt -s globstar
110113
python -m coverage combine coverage/**/.coverage
111114
112115
- name: "Upload Combined Coverage Artefact 🚀"
116+
if: ${{ steps.show.outcome != 'failure' }}
113117
uses: actions/upload-artifact@v2
114118
with:
115119
name: "combined-coverage"
116120
path: .coverage
117121

118122
- name: "Upload Combined Coverage to Coveralls"
123+
if: ${{ steps.show.outcome != 'failure' }}
119124
env:
120125
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
121126
run: |

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: "macos-latest"
2222
continue-on-error: ${{ matrix.config.experimental }}
2323
env:
24-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-rc.2,pypy-3.6,pypy-3.7'
24+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,pypy-3.6,pypy-3.7'
2525

2626
strategy:
2727
fail-fast: False
@@ -31,7 +31,7 @@ jobs:
3131
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3232
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3333
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
34-
- {python-version: "3.10.0-rc.2", testenvs: "py310-dev,build", experimental: True}
34+
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: True}
3535
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3636
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3737

tox.ini

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,14 @@ deps =
7272
flake8-noqa>=1.1.0
7373
flake8-pyi>=20.10.0
7474
flake8-pytest-style>=1.3.0
75+
flake8-quotes>=3.3.0
7576
flake8-slots>=0.1.0
7677
flake8-sphinx-links>=0.0.4
7778
flake8-strftime>=0.1.1
7879
flake8-typing-imports>=1.10.0
79-
git+https://github.com/domdfcoding/flake8-quotes.git
8080
git+https://github.com/domdfcoding/flake8-rst-docstrings-sphinx.git
8181
git+https://github.com/domdfcoding/flake8-rst-docstrings.git
82+
git+https://github.com/python-formate/flake8-unused-arguments.git@magic-methods
8283
pydocstyle>=6.0.0
8384
pygments>=2.7.1
8485
importlib_metadata<4.5.0; python_version<'3.8'
@@ -139,6 +140,10 @@ multiline-quotes = """
139140
docstring-quotes = """
140141
count = True
141142
min_python_version = 3.6.1
143+
unused-arguments-ignore-abstract-functions = True
144+
unused-arguments-ignore-overload-functions = True
145+
unused-arguments-ignore-magic-methods = True
146+
unused-arguments-ignore-variadic-names = True
142147
143148
[coverage:run]
144149
plugins = coverage_pyver_pragma

0 commit comments

Comments
 (0)