-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace httpbin references with QuickPizza #1833
Conversation
ddd68c3
to
3e45498
Compare
const res = http.get(`http://example.com/posts`); | ||
check(res, { | ||
'is status 200': (r) => r.status === 200, | ||
export default function () { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Script was not working without the export
function.
@@ -14,10 +14,22 @@ | |||
import tempfile | |||
from collections import namedtuple | |||
|
|||
Script = namedtuple("Script", ["text", "options"]) | |||
Script = namedtuple("Script", ["text", "options", "env"]) | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Script has some new options, they are all documented though!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did a quick scan through and this looks great to me! This workflow is so helpful, and thanks for updating the CONTRIBUTING with the new options too. 🙇 🙇
Co-authored-by: Heitor Tashiro Sergent <[email protected]>
debe971
to
4bf22a9
Compare
What?
Part of https://github.com/grafana/k6-cloud/issues/2437.
Replace all uses of
httpbin.test.k6.io
with QuickPizza.TODO: Once this is reviewed, I'll apply the changes to older k6 versions.
Checklist
npm start
command locally and verified that the changes look good.docs/sources/k6/next
folder of the documentation.docs/sources/k6/v{most_recent_release}
folder of the documentation.docs/sources/k6/next
folder of the documentation.Related PR(s)/Issue(s)