mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
0682c5ab5d
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
15 lines
360 B
Python
15 lines
360 B
Python
import os
|
|
|
|
import pytest
|
|
|
|
|
|
here = os.path.dirname(__file__)
|
|
version_file = os.path.join(here, "version.py")
|
|
|
|
with open(version_file) as f:
|
|
code = compile(f.read(), version_file, 'exec')
|
|
exec(code)
|
|
|
|
use_class_based_httpbin = pytest.mark.usefixtures("class_based_pypi")
|
|
use_class_based_httpbin_secure = pytest.mark.usefixtures("class_based_pypi_secure")
|