ci: use valid sanic instance name (#157)
* ci: use valid sanic instance name Signed-off-by: Grant Timmerman <744973+grant@users.noreply.github.com> * ci: use simple sanic name Signed-off-by: Grant Timmerman <744973+grant@users.noreply.github.com>
This commit is contained in:
parent
43659228ae
commit
6f27322146
|
@ -66,7 +66,7 @@ invalid_cloudevent_request_body = [
|
||||||
|
|
||||||
test_data = {"payload-content": "Hello World!"}
|
test_data = {"payload-content": "Hello World!"}
|
||||||
|
|
||||||
app = Sanic(__name__)
|
app = Sanic("test_http_events")
|
||||||
|
|
||||||
|
|
||||||
@app.route("/event", ["POST"])
|
@app.route("/event", ["POST"])
|
||||||
|
|
|
@ -19,7 +19,7 @@ from cloudevents.sdk.event import v1
|
||||||
from cloudevents.tests import data as test_data
|
from cloudevents.tests import data as test_data
|
||||||
|
|
||||||
m = marshaller.NewDefaultHTTPMarshaller()
|
m = marshaller.NewDefaultHTTPMarshaller()
|
||||||
app = Sanic(__name__)
|
app = Sanic("test_with_sanic")
|
||||||
|
|
||||||
|
|
||||||
@app.route("/is-ok", ["POST"])
|
@app.route("/is-ok", ["POST"])
|
||||||
|
|
Loading…
Reference in New Issue