Compare commits
3 Commits
33defb85a7
...
4161a3d721
Author | SHA1 | Date |
---|---|---|
Sebastian Lohff | 4161a3d721 | |
Sebastian Lohff | 2d434d83a1 | |
Sebastian Lohff | 41a0f64ff7 |
File diff suppressed because it is too large
Load Diff
|
@ -92,11 +92,14 @@ def datadir(tmp_path):
|
|||
|
||||
|
||||
def make_request(path='/', host='localhost', port=SERVEFILE_DEFAULT_PORT, method='get', protocol='http', timeout=5,
|
||||
**kwargs):
|
||||
encoding='utf-8', **kwargs):
|
||||
url = '{}://{}:{}{}'.format(protocol, host, port, path)
|
||||
print('Calling {} on {} with {}'.format(method, url, kwargs))
|
||||
r = getattr(requests, method)(url, **kwargs)
|
||||
|
||||
if r.encoding is None and encoding:
|
||||
r.encoding = encoding
|
||||
|
||||
return r
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue