Compare commits

..

No commits in common. "0819d23f47ebf61cacedb6648feaab252d5741ff" and "dce8c995f6834cf09b606e65c1ac152be630c594" have entirely different histories.

3 changed files with 4 additions and 10 deletions

View File

@ -14,7 +14,6 @@ setup(
author_email='seba@someserver.de',
install_requires=['pyopenssl'],
tests_require=[
'pathlib2; python_version<"3"',
'pytest',
'requests',
],

View File

@ -4,19 +4,16 @@ import pytest
import requests
import socket
import subprocess
import sys
import tarfile
import time
import urllib3
# crudly written to learn more about pytest and to have a base for refactoring
if sys.version_info.major >= 3:
from pathlib import Path
try:
ConnectionRefusedError
connrefused_exc = ConnectionRefusedError
else:
from pathlib2 import Path
except NameError:
connrefused_exc = socket.error
@ -28,8 +25,7 @@ def run_servefile():
if not isinstance(args, list):
args = [args]
print("running with args", args)
servefile_path = str(Path(__file__).parent.parent / 'servefile')
p = subprocess.Popen([sys.executable, servefile_path] + args, **kwargs)
p = subprocess.Popen(['servefile'] + args, **kwargs)
time.sleep(kwargs.get('timeout', 0.3))
instances.append(p)

View File

@ -3,7 +3,6 @@ envlist = py27,py36
[testenv]
deps =
pathlib2; python_version<"3"
pytest
requests
commands = pytest --tb=short {posargs}