From 63dfd4a32619806ee2e28fe79af671e1dbbfd21d Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Sat, 23 Sep 2017 14:33:39 -0500 Subject: [PATCH] Fix pytest collection warnings in test_maxwell.py by telling pytest to ignore python classes (otherwise it would try to collect any classes that start with Test*). --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index 42291e82..ed2c99f4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,3 +5,5 @@ exclude= pytential/symbolic/old_diffop_primitives.py, pytential/symbolic/pde/maxwell/generalized_debye.py, +[tool:pytest] +python_classes= -- GitLab