Commit 09582cf4 authored by Alexander Lercher's avatar Alexander Lercher

Fixed tests

parent f140e2c9
......@@ -15,7 +15,7 @@ basePath: "/api"
paths:
/debug:
post:
operationId: "rest.debug.echo"
operationId: "routes.debug.echo"
tags:
- "Echo"
summary: "Echo function for debugging purposes"
......@@ -32,7 +32,7 @@ paths:
/trace:
post:
operationId: "rest.blockchain_trace.post"
operationId: "routes.blockchain_trace.post"
tags:
- "Blockchain Trace"
summary: "Add a new blockchain trace to SMART"
......@@ -50,7 +50,7 @@ paths:
400:
description: "Invalid input"
get:
operationId: "rest.blockchain_trace.get"
operationId: "routes.blockchain_trace.get"
tags:
- "Blockchain Trace"
summary: "Get blockchain traces"
......
# add modules folder to interpreter path
import sys
import os
modules_paths = ['../', '../../../../modules/']
modules_paths = ['../', '../../../../modules/', '../../../modules/']
for path in modules_paths:
if os.path.exists(path):
print(path)
sys.path.insert(1, path)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment