From f624a3ae8baadba4dabb55e5851a27d40a6cf73e Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=A1bor=20Lipt=C3=A1k?= Date: Tue, 17 Jan 2017 12:13:34 -0500 Subject: [PATCH] Correct pytest deprecation warning WC1 None [pytest] section in setup.cfg files is deprecated, use [tool:pytest] instead. Change-Id: I099c8207730ae1226f7357ff8be0d8ab149878ed Pull-request: https://github.com/zzzeek/sqlalchemy/pull/334 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index e8195cf5b6..d858a24354 100644 --- a/setup.cfg +++ b/setup.cfg @@ -8,7 +8,7 @@ exclude = ^examples first-package-wins = true where = test -[pytest] +[tool:pytest] addopts= --tb native -v -r fxX --maxfail=25 python_files=test/*test_*.py -- 2.47.2