-
Notifications
You must be signed in to change notification settings - Fork 521
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
Fix part of #295: Change the CircleCI workflow #357
Conversation
@seanlip @BenHenning PTAL! |
assertThat(subtopicResponse.isSuccessful).isTrue() | ||
assertThat(subtopicResponse.body()!!.subtopicTitle).isEqualTo("Subtopic 1") | ||
} | ||
// @Test |
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.
Weird to see all this commented out. Is it intentional?
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.
Oops, that was not intentional..removed it
/cc @kevinlee12 would you be up for taking a look at this PR, since you're familiar with CircleCI on oppia/oppia? |
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.
LGTM, though with the caveat that I'm not super familiar with CircleCI config -- I'll ping @kevinlee12 to ask if he has any comments based on his experience with oppia-web.
return JSONObject(json).toString() | ||
return try { | ||
JSONObject(json).toString() | ||
} catch(e: JSONException) { |
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.
Nit: catch (
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.
Thanks @vinitamurthi! Let's reference #295 in this PR, as well.
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.
config looks good!
Explanation
This PR makes some changes to the circleCI workflow:
Follow up PRs will slowly move the flaky tests into the non-flaky queue and then we can finally block submit on this
Also fix a network interceptor test
Fixes part of Fix all broken tests on develop #295
Checklist