We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acf6390 commit 8c2987fCopy full SHA for 8c2987f
.github/workflows/python-tests.yml
@@ -26,6 +26,8 @@ jobs:
26
python-version: "pypy-3.8"
27
- os: macos-latest
28
python-version: "3.10"
29
+ - os: ubuntu-latest
30
+ python-version: "3.12"
31
steps:
32
- name: Checkout
33
uses: actions/checkout@v3
pyproject.toml
@@ -273,6 +273,10 @@ filterwarnings = [
273
"always:unclosed <socket.socket:ResourceWarning",
274
"module:Jupyter is migrating its paths to use standard platformdirs:DeprecationWarning",
275
"ignore:jupyter_server.base.zmqhandlers module is deprecated in Jupyter Server 2.0:DeprecationWarning",
276
+ "ignore:datetime.utcfromtimestamp:DeprecationWarning",
277
+ "ignore:datetime.utcnow:DeprecationWarning",
278
+ # ignore pytest warnings.
279
+ "ignore:::_pytest",
280
]
281
282
[tool.coverage.report]
0 commit comments