File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ $ git clone https://github.com/HEPData/hepdata-cli.git
41
41
$ cd hepdata-cli
42
42
$ python3 -m venv ~/venv/hepdata-cli
43
43
$ source ~/venv/hepdata-cli/bin/activate
44
- (hepdata-cli) $ pip install -e .[tests]
44
+ (hepdata-cli) $ pip install -e ' .[tests]'
45
45
(hepdata-cli) $ hepdata-cli --help
46
46
(hepdata-cli) $ pytest --cov=hepdata_cli
47
47
```
Original file line number Diff line number Diff line change @@ -12,5 +12,5 @@ def test_timeout():
12
12
adapter = TimeoutHTTPAdapter (max_retries = retry_strategy , timeout = 0.0001 )
13
13
with requests .Session () as session :
14
14
session .mount ("https://" , adapter )
15
- with pytest .raises (requests .exceptions .ConnectTimeout ):
15
+ with pytest .raises (requests .exceptions .ConnectionError ):
16
16
session .get (SITE_URL + '/ping' )
You can’t perform that action at this time.
0 commit comments