Skip to content

Commit 7662a60

Browse files
committed
2 parents b74765d + c68ac3b commit 7662a60

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/main.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ env:
77
# Request colored output from CLI tools supporting it. Different tools
88
# interpret the value differently. For some, just being set is sufficient.
99
# For others, it must be a non-zero integer. For yet others, being set
10-
# to a non-empty value is sufficient.
11-
FORCE_COLOR: -106
10+
# to a non-empty value is sufficient. For tox, it must be one of
11+
# <blank>, 0, 1, false, no, off, on, true, yes. The only enabling value
12+
# in common is "1".
13+
FORCE_COLOR: 1
1214
# MyPy's color enforcement (must be a non-zero number)
1315
MYPY_FORCE_COLOR: -42
1416
# Recognized by the `py` package, dependency of `pytest` (must be "1")
@@ -61,6 +63,7 @@ jobs:
6163
- platform: ubuntu-latest
6264
python: "3.9"
6365
runs-on: ${{ matrix.platform }}
66+
continue-on-error: ${{ matrix.python == '3.12' }}
6467
steps:
6568
- uses: actions/checkout@v3
6669
with:

docs/conf.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/env python3
2-
31
extensions = [
42
'sphinx.ext.autodoc',
53
'jaraco.packaging.sphinx',

pytest.ini

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ norecursedirs=dist build .tox .eggs
33
addopts=--doctest-modules
44
doctest_optionflags=ALLOW_UNICODE ELLIPSIS
55
filterwarnings=
6+
# Ensure ResourceWarnings are emitted
7+
default::ResourceWarning
8+
69
# Suppress deprecation warning in flake8
710
ignore:SelectableGroups dict interface is deprecated::flake8
811

0 commit comments

Comments
 (0)