-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpytest.ini
16 lines (15 loc) · 1.01 KB
/
pytest.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[pytest]
DJANGO_SETTINGS_MODULE = tests.settings
; addopts = --cov=django_drf_filepond
testpaths =
tests
filterwarnings =
; Ignore the RemovedInDjango41Warning generated by the use of default_app_config
ignore:.*Django now detects this configuration automatically:PendingDeprecationWarning
; Ignore the RemovedInDjango5Warning generated by the use of the USE_L10N setting since this
; only applies to the test settings and not the app itself.
ignore:.*The USE_L10N setting is deprecated\. Starting with Django 5.0:PendingDeprecationWarning
; Ignore CryptographyDeprecationWarnings for removal of cryptography support for py2.7, 3.5, 3.6
ignore:.*Python 2 is no longer supported by the Python core team\. Support for it is now deprecated in cryptography:UserWarning
ignore:.*Python 3\.5 support will be dropped in the next release of cryptography:UserWarning
ignore:.*Python 3\.6 is no longer supported by the Python core team\. Therefore, support for it is deprecated in cryptography:UserWarning