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.
2 parents 9d14ec7 + c90b897 commit 85ff849Copy full SHA for 85ff849
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