Skip to content

Commit 955607c

Browse files
committed
TST: add connection refused (111) error to skipping for network. the urlerror apparentely
doesn't provide an errno so were not ignoring this
1 parent 9f14e76 commit 955607c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/util/testing.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1600,7 +1600,8 @@ def dec(f):
16001600
'HTTP Error 403',
16011601
'Temporary failure in name resolution',
16021602
'Name or service not known',
1603-
)
1603+
'Connection refused',
1604+
)
16041605

16051606
# or this e.errno/e.reason.errno
16061607
_network_errno_vals = (

0 commit comments

Comments
 (0)