ignore the DeprecationWarning about typing.ByteString in graphql

This commit is contained in:
Florian Zimmermann 2024-07-04 14:55:30 +02:00
parent c127aec75b
commit 9ecf322da1
3 changed files with 6 additions and 2 deletions

View File

@ -10,7 +10,7 @@ dev-setup:
.PHONY: tests ## Run unit tests
tests:
PYTHONPATH=. pytest -Werror graphene_django --cov=graphene_django -vv
PYTHONPATH=. pytest graphene_django --cov=graphene_django -vv
.PHONY: format ## Format code
format:

View File

@ -10,3 +10,7 @@ omit = */tests/*
[tool:pytest]
DJANGO_SETTINGS_MODULE = examples.django_test_settings
addopts = --random-order
filterwarnings =
error
# we can't do anything about the DeprecationWarning about typing.ByteString in graphql
default:'typing\.ByteString' is deprecated:DeprecationWarning:graphql\.pyutils\.is_iterable

View File

@ -34,7 +34,7 @@ deps =
django42: Django>=4.2,<4.3
django50: Django>=5.0,<5.1
djangomain: https://github.com/django/django/archive/main.zip
commands = {posargs:pytest -Werror --cov=graphene_django graphene_django examples}
commands = {posargs:pytest --cov=graphene_django graphene_django examples}
[testenv:pre-commit]
skip_install = true