Skip to content

Commit b791f8a

Browse files
committed
Merge remote branch into oauth2
2 parents e1beddf + 6ec2f4a commit b791f8a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,7 @@ src/build
4848
# Visual Studio Files
4949
/.vs/*
5050
/tests/.vs/*
51+
52+
# The test configuration file(s) could potentially contain credentials
53+
tests/config.json
54+

tests/test_client.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
except: # Python 3
77
from urllib.parse import urljoin
88
import time
9+
try:
10+
FileNotFoundError # Python 3
11+
except NameError:
12+
FileNotFoundError = IOError # Python 2
913

1014
import requests
1115

0 commit comments

Comments
 (0)