-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Log test duration for serial tests only #1668
Comments
👍 |
Hello @novemberborn I am interested in working on this issue. My question is, how should we format the output?
is it okay? |
@okyantoro yay! I don't know — the spec is at http://testanything.org/tap-version-13-specification.html. This may require a PR to https://www.npmjs.com/package/supertap which we use to format the TAP output. |
@novemberborn that spec didn't mention about time duration but I think it is reasonable to put the time duration information in test description. I think it is okay to add supertab.test('Test Foo()', { ..., duration: test.duration, ... }); but if we concat the test title with test duration inside ava, we don't need to modify the supertab behavior, we also already have |
It is harder than it seem, directly passing the title and duration together like
The above output will not work at least if we pipe those output with
or maybe we can put the time duration in supertap |
It should work with |
I browse the TAP spec repo and found TestAnything/Specification#16 discussed about time directive. Using time directive looks nicer to me, but this is not the standard way as the spec just allow two directives:
but I think ava test reporting doesn't work this way. another option
|
I'm tempted to defer to Can you find out how the typical Node.js TAP parsers handle duration? |
@novemberborn I haven't checked the source code of
This example is taken from http://www.node-tap.org/basics/ Then for ava, I think we can do something like:
Basically, test foo has no subtest contained (pseudo subtest 😄 ), at least it match the spec mentioned in http://www.node-tap.org/tap-format/ 😄 but as I mentioned in #1668 (comment) , the Test Anything Protocol didn't mention about time directive. Any thought about it? |
We can follow @okyantoro could I ask you to hold off with this for now? I've started refactoring how the test workers communicate with the main process and how all that communication flows to the reporters. This new architecture should let us fix most open reporter issues and add new functionality, but it's going to conflict with this issue. I'll try and focus the refactor so it doesn't change functionality, so you can still work on this issue when once it lands. |
sure @novemberborn |
I'd like to tackle #1776 before changing this behavior. |
@novemberborn Should I tackle this issue, on behalf of #2217? |
If you're meaning to do it first, sure. Or else perhaps as part of that. I'll assign you anyway. |
We are optimizing our ava tests and it would be nice to quickly determine the slowest running tests (or test files) from avas point of view (when using serial). Are there any updates on this feature? |
@shusson no. It may be more feasible to implement this since have combined the codebase for the "mini" and verbose reporters. That said you could run with |
This could be useful for #2965 too, as my use case is to measure test files duration (not individual tests), so I can load balance the files across multiple machines. My current plan is to glob the test files and then If you think it's a good idea to measure duration for test files I can open a separate issue for it. |
@erezrokah that seems like quite a specific use case. |
@novemberborn, for whatever it's worth, I think the scenario @erezrokah describes on Feb 15, 2022 is quite natural. It seems to me that's the first thing someone would do if they hoped to improve the performance of their test suite. It's actually how I arrived here. And their manually-measure-each-file proposal is the same thing I thought to do if I couldn't find something in ava to help. |
@DavidAnson reinterpreting my past self, I'd say it's specific enough that using |
I'm thinking of revisiting #971, but with a twist.
Reporting test duration when tests run concurrently can be misleading, since slow, synchronous code in one test also slows down another. This is why I've been hesitant of exposing the duration numbers in the TAP reporter.
Oddly though we do show durations in the verbose reporter! This has survived all the way from #30.
I wonder if we should only show durations when
--serial
is used. This way the numbers will be more accurate and users will be less tempted to fix one "slow" test while the problem is another. We can then also include it in the TAP output.The text was updated successfully, but these errors were encountered: