-
-
Notifications
You must be signed in to change notification settings - Fork 58
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
[enhancement] Enable writing test results to file #30
Comments
Just added a pull request with my temporary solution. It would be great to have this - or something similar - added to the official version. |
Added a new pull request with a different, better solution, see discussion at #31. |
I wonder if a testem config file per scenario is the right approach. It seems like the only thing that would vary between scenarios would be the report_file, right? Adding the ability to pass the report file as an option to
|
Well, for my scenario this would suffice. But the more general approach means people could do unexpected things, e. g. different browsers for each scenario, maybe? Different test runners (I can't imagine a real use case, but who knows). That said, any solution that lets me use different report files would solve the problem I'm facing right now. |
In the scenario where you run
You could also set any other options that
|
Using this kind of build matrix won't work for me: I've got only one build job for all branches with different scenarios in different branches. Therefore I have to use the scenarios checked into each branch. From my point of view, this is one of the basic promises of ember-try: To run scenarios checked in with your code and not having to resort to some buildbot magic. Anyway, until there's a solution in ember-try I can and will use the solution from #32, so I'm set for the moment. But I'd rather lose our fork in the long run and change to a solution in the official versions. I understand that you want to add a configuration option |
I'd like to get rid of my fork, so I'm having another look at this one. At the moment (ember-cli 1.13.8) If this is the way you want to go, I'd be volunteering to code this. |
I've been working on a refactor the last few days to prep for handling several issues, including this one. Here are a few ideas I've had around this issue:
Personally I'm leaning towards the Thoughts? |
First things first: Any of those ideas would help me to solve my problem.
I, for my part, would prefer the "combining taps", followed by the |
Is there anything new, especially regarding things I could do to help? |
I'm trying to publish the tap test results on Jenkins using the TAP plugin. For this, it would be great, to have a configuration option to have the output of the different runs of testall to be written into separate files. The rest could be handled by tap-merge and the Jenkins TAP plugin.
The text was updated successfully, but these errors were encountered: