Zixuan Li
Zixuan Li
A new parameter `buffer` was added. `suites` was renamed to `subsuites`. ParallelTestSuite: https://github.com/django/django/blob/2fac0a18081dcc77fc860c801e5d727dc90435b3/django/test/runner.py#L468-L475 RemoteTestRunner: https://github.com/django/django/blob/2fac0a18081dcc77fc860c801e5d727dc90435b3/django/test/runner.py#L350 `buffer` was added in https://github.com/django/django/commit/f6713cda89d323565cfdc867c977c3363edcfc3c, `suites` was renamed in https://github.com/django/django/commit/cb6c19749d342c3dc0f97d89ff6887b220cf45b8. Both of these changes were...
# I have made things! This adds type annotations for `run`, `get_handler`, `inner_run` and `server_cls`. [perm link to the relevant source code](https://github.com/django/django/blob/03eec9ff6cc78e7c1bcf88bb76ecd11f0d433c72/django/core/management/commands/runserver.py) ## Related issues None
#350 This adds mkdocs to the project. The intent is to have a place to serve documentation for anything related to Anubis, either for developers, students, or site administrators. It...
Currently, our palette is set up for a dark theme. We might want to reconfigure it in some way and make sure that colors aren't hardcoded anywhere.
Improving the test coverage will help us move more smoothly when doing code migrations and save some time from debugging. Specifically, we may want to test features that require external...
Following support to running bots from entry points in #708, we implement this `create-zulip-bot` tool to simplify the process of creating new bots. The user will be able to directly...
Currently, the bot is able to add a reaction conveniently using `react(message, emoji_name)`. Similarly, we can also wrap the API call for removing a reaction for our bot handler. We...
Users cannot commit directly in an IDE session without setting their information every time. Originally the plan was to utilize `GIT_COMMITTER_NAME` and `GIT_COMMITTER_EMAIL` environment variables so that `git commit` works...
This adds support to adding linkifiers with the new URL template syntax. This PR relies on https://github.com/zulip/zulip/pull/23125 to determine the feature level that changes the endpoint.