Kael

Results 49 comments of Kael

`TestResult::unignored` is only used for helping implementing caching mechanism in some certain situation, and in your case, checking `TestResult::ignored` is enough, or use the `.ignores()` method directly. To test a...

To be honest, similar cases have been asked several times here, I am considering to implement the feature directly in this package.

As I said, for your case, some similar mechanism like [here](https://github.com/kaelzhang/node-ignore/blob/master/index.js#L564) needs to be implemented, according to one of the .gitignore rules: > It is not possible to re-include a...

Really really glad that it helps ~ 😄

Im not going to introduce new features to this package because the performance of JavaScript is really bad especially for science mathematics. I have migrated all my JavaScript projects for...

To support incremental calculation, there must be a manager to maintain kline data which is obviously not the duty of this package. [`pandas`](https://en.wikipedia.org/wiki/Pandas_(software)) is born to manage series data, and...

`express-graphql` uses some express-only methods, such as `response.json(object)`, which is a really bad practice. So, `express-to-koa` could not support `express-graphql` I suggest to create an issue to `express-graphql` to discuss...

Checkout this: https://github.com/kaelzhang/express-to-koa#what-kind-of-express-middlewares-are-supported

As long as a middleware is express-independent, `express-to-koa` is able to handle it 😄

Please refer to the implementation of pytorch. Actually I don't have time to figure out the issue for tf implementation, but pytorch one is ok.