weakish

Results 105 issues of weakish

相关工单: 36822 之前似乎论坛上也有一个用户提过 这个目前只是设想阶段,短期内不会实施。

idea

目前 Node.js SDK 有这样的功能: ```js env DEBUG=leancloud:request:error lean up ```

enhancement
next

```js const d = await new AV.Query('TestObject').get('5f27bc73fbb489000824300d') console.log(d.get('testList')) listData = d.get('testList') listData.push('debug') await d.save() ``` 上面这段 JS 代码,最终云端的 `testList` 会包含 `debug` 这个值,但是等效的 Python 代码,`testList` 并不会包含 `debug` 这个值。 python SDK 的...

next

有很多测试都过时失效了

next
test

> Nose has been in maintenance mode for the past several years and will likely cease without a new person/team to take over maintainership. New projects should consider using Nose2,...

next

现在调试日志用的是 requests (也就是 urllib3)的日志,只有 url 和 status code,没有 POST 请求的 body,也没有 http header。 顺便记录下 python 3 下如何开启完整日志: ```python import http.client http.client.HTTPConnection.debuglevel=5 import logging logging.basicConfig(level=logging.DEBUG) import leancloud # leancloud.init(...) ```

next

在新应用上测试发现目前的测试有很多地方依赖应用的状态(比如应用内存在某个用户),在新创建的应用上很多测试都会失败。

next
test

参考 leancloud/javascript-sdk#579 的做法(js 用的是 polly.js,python 对应的库是 vcrpy)

next
test

有些 REST API 提供的功能没有支持,比如 `/1.2/rtm/clients/{client_id}/messages` related ticket: 20970 related forum topic: [20706](https://forum.avoscloud.com/t/python-sdk-1-1-api/20706)

next