We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8801324 commit 117ff2aCopy full SHA for 117ff2a
conftest.py
@@ -0,0 +1,9 @@
1
+import py
2
+import apipkg
3
+LOCAL_APIPKG = py.path.local(__file__).dirpath().join('src/apipkg/__init__.py')
4
+INSTALL_TYPE = 'editable' if apipkg.__file__ == LOCAL_APIPKG else 'full'
5
+
6
7
+def pytest_report_header(startdir):
8
+ return "apipkg {install_type} install version={version}".format(
9
+ install_type=INSTALL_TYPE, version=apipkg.__version__)
0 commit comments