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 07ef286 commit c90b897Copy full SHA for c90b897
pytest_httpbin/__init__.py
@@ -1,6 +1,8 @@
1
import pytest
2
3
-__version__ = '0.0.3'
+with open("pytest_httpbin/version.py") as f:
4
+ code = compile(f.read(), "pytest_httpbin/version.py", 'exec')
5
+ exec(code)
6
7
use_class_based_httpbin = pytest.mark.usefixtures("class_based_httpbin")
8
use_class_based_httpbin_secure = pytest.mark.usefixtures("class_based_httpbin_secure")
0 commit comments