Skip to content

Commit a69ec13

Browse files
committed
Fix merge conflicts
2 parents a355708 + aa85f41 commit a69ec13

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ jobs:
88
name: ${{ matrix.python-version }}
99
runs-on: ubuntu-latest
1010
strategy:
11+
fail-fast: false
1112
matrix:
1213
include:
1314
- tox-env: "py37"
@@ -64,7 +65,7 @@ jobs:
6465
# https://github.com/pytest-dev/pytest-html/issues/482
6566
# - os: macOS-latest
6667
# name: pypy3-mac
67-
# python-version: pypy3
68+
# python-version: pypy-3.8
6869

6970
- tox-env: "devel"
7071
python-version: "3.11-dev"

.pre-commit-config.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
repos:
22
- repo: https://github.com/psf/black
3-
rev: 20.8b1 # also bump this in Pipfile
3+
rev: 22.3.0
44
hooks:
55
- id: black
66
args: [--safe, --quiet]
77
- repo: https://github.com/asottile/blacken-docs
8-
rev: v1.7.0
8+
rev: v1.12.1
99
hooks:
1010
- id: blacken-docs
11-
additional_dependencies: [black==20.8b1] # also bump this in Pipfile
11+
additional_dependencies: [black==22.3.0]
1212
- repo: https://github.com/pre-commit/pre-commit-hooks
13-
rev: v3.1.0
13+
rev: v4.1.0
1414
hooks:
1515
- id: trailing-whitespace
1616
- id: end-of-file-fixer
@@ -19,21 +19,21 @@ repos:
1919
- id: check-yaml
2020
- id: debug-statements
2121
language_version: python3
22-
- repo: https://gitlab.com/pycqa/flake8
23-
rev: 3.8.4 # also bump this in Pipfile
22+
- repo: https://github.com/PyCQA/flake8
23+
rev: 4.0.1
2424
hooks:
2525
- id: flake8
2626
language_version: python3
2727
additional_dependencies:
2828
- flake8-builtins==1.5.3
29-
- flake8-typing-imports==1.9.0
29+
- flake8-typing-imports==1.12.0
3030
- repo: https://github.com/asottile/reorder_python_imports
31-
rev: v2.3.0
31+
rev: v3.0.1
3232
hooks:
3333
- id: reorder-python-imports
3434
args: ["--application-directories=.:src:testing", --py3-plus]
3535
- repo: https://github.com/asottile/pyupgrade
36-
rev: v2.4.4
36+
rev: v2.32.0
3737
hooks:
3838
- id: pyupgrade
3939
args: [--py3-plus]

testing/legacy_test_pytest_html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ def pytest_configure(config):
823823
"content,expected_content", _test_environment_list_value_data_set
824824
)
825825
def test_environment_list_value(self, testdir, content, expected_content):
826-
expected_html_re = fr"<td>content</td>\n\s+<td>{expected_content}</td>"
826+
expected_html_re = rf"<td>content</td>\n\s+<td>{expected_content}</td>"
827827
testdir.makeconftest(
828828
f"""
829829
def pytest_configure(config):

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ deps =
4141

4242
[testenv:docs]
4343
# NOTE: The command for doc building was taken from readthedocs documentation
44-
# See https://docs.readthedocs.io/en/stable/builds.html#understanding-what-s-going-on
44+
# See https://docs.readthedocs.io/en/stable/builds.html#understanding-what-s-going-on
4545
basepython = python
4646
changedir = docs
4747
deps = sphinx

0 commit comments

Comments
 (0)