diff --git a/run_tests.py b/run_tests.py index 43251b90..de101194 100644 --- a/run_tests.py +++ b/run_tests.py @@ -27,7 +27,7 @@ def run_tests(): "x-api-key": os.getenv("API_KEY"), } - res = requests.post(endpoint, data=data, headers=headers) + res = requests.post(endpoint, data=json.dumps(data), headers=headers) res_json = res.json() print(res_json)