From 411e9b136b5b7636dfa1d88f05931ed0ce4b0b85 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 26 May 2011 18:37:04 -0500 Subject: [PATCH] do configure hooks here, too --- _pytest/pytester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pytest/pytester.py b/_pytest/pytester.py index cfd9ea358..8bfa3d37b 100644 --- a/_pytest/pytester.py +++ b/_pytest/pytester.py @@ -298,7 +298,7 @@ class TmpTestdir: return res def getpathnode(self, path): - config = self.parseconfig(path) + config = self.parseconfigure(path) session = Session(config) x = session.fspath.bestrelpath(path) config.hook.pytest_sessionstart(session=session)