aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-12-31 18:44:24 -0800
committerBryan Newbold <bnewbold@robocracy.org>2018-12-31 18:44:24 -0800
commitab80106891e5eca1a400b095aa456ad53dce2f71 (patch)
treef15186dda1220d9b8f3a3e43d1cc86a5b624c731 /python/tests
parentb292d25b3f29407e4a6c3c093bd15027da6d8d73 (diff)
downloadfatcat-ab80106891e5eca1a400b095aa456ad53dce2f71.tar.gz
fatcat-ab80106891e5eca1a400b095aa456ad53dce2f71.zip
add crude/manual auth token to python tests (fixing them)
Diffstat (limited to 'python/tests')
-rw-r--r--python/tests/fixtures.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/tests/fixtures.py b/python/tests/fixtures.py
index 567e9132..c415abef 100644
--- a/python/tests/fixtures.py
+++ b/python/tests/fixtures.py
@@ -22,6 +22,8 @@ def app(full_app):
def api():
conf = fatcat_client.Configuration()
conf.host = "http://localhost:9411/v0"
+ conf.api_key["Authorization"] = "AgEPZGV2LmZhdGNhdC53aWtpAg4yMDE4LTEyLTMxLWRldgACJmVkaXRvcl9pZCA9IGFhYWFhYWFhYWFhYWJrdmthYWFhYWFhYWFlAAIeY3JlYXRlZCA9IDIwMTgtMTItMzFUMjE6MTU6NDdaAAAGIMWFZeZ54pH4OzNl5+U5X3p1H1rMioSuIldihuiM5XAw"
+ conf.api_key_prefix["Authorization"] = "Bearer"
api_client = fatcat_client.DefaultApi(fatcat_client.ApiClient(conf))
return api_client