From c31e1a379700873267dfb520f74f0cb62713e736 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Thu, 22 Feb 2018 13:36:33 +0100 Subject: [PATCH] turn mark into a package --- _pytest/{mark.py => mark/__init__.py} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename _pytest/{mark.py => mark/__init__.py} (99%) diff --git a/_pytest/mark.py b/_pytest/mark/__init__.py similarity index 99% rename from _pytest/mark.py rename to _pytest/mark/__init__.py index 3cac9dc91..d2d601e9e 100644 --- a/_pytest/mark.py +++ b/_pytest/mark/__init__.py @@ -10,8 +10,8 @@ from operator import attrgetter from six.moves import map from _pytest.config import UsageError -from .deprecated import MARK_PARAMETERSET_UNPACKING -from .compat import NOTSET, getfslineno +from ..deprecated import MARK_PARAMETERSET_UNPACKING +from ..compat import NOTSET, getfslineno EMPTY_PARAMETERSET_OPTION = "empty_parameter_set_mark"