Multiple MarkdownExporters not possible#3
Conversation
8a5499e to
8a242b6
Compare
2208375 to
b254909
Compare
|
✅ Datapoint verification passed. Instance: Details: Workflow run |
|
Datapoint generated successfully. Instance: |
|
Datapoint pipeline complete. Closing source PR (not merging). |
b254909 to
03e7c65
Compare
|
✅ Datapoint verification passed. Instance: Details: Workflow run |
|
Datapoint generated successfully. Instance: |
|
Datapoint pipeline complete. Closing source PR (not merging). |
03e7c65 to
d2e166b
Compare
Apply patches from ee-bench-csharp
d2e166b to
ce67310
Compare
|
❌ Datapoint verification failed. Instance: Failed criteria: fail_to_pass: fail, pass_to_pass: fail Error detailsDetails: Workflow run |
|
✅ Datapoint verification passed. Instance: Details: Workflow run |
|
@dpaia-validator generate datapoint |
|
Datapoint generated successfully. Instance: |
|
Datapoint pipeline complete. Closing source PR (not merging). |
|
❌ Datapoint verification failed. Instance: Error detailsDetails: Workflow run |
|
✅ Datapoint verification passed. Instance: Details: Workflow run |
|
✅ Datapoint verification passed. Instance: Details: Workflow run |
|
✅ Datapoint verification passed. Instance: Details: Workflow run |
|
Datapoint generated successfully. Instance: |
Multiple MarkdownExporters not possible
I'm testing BenchmarkDotNet and would like to have the benchmark results exported to both GitHub markdown and Atlassian markdown. But I get the error
Is that by intention - and why is it not possible to export to both markdown formats in the same run?
Hints
adamsitnik: > Is that by intention
I really doubt that, it's most likely a bug on our side.
bstordrup: The issue is as far as I can see in the
ImmutableConfigBuilder.GetExportersmethod. It makes a mergeDictionary by the System.Type - and that will be the same for both the GitHub MarkdownExporter and the Atlassian MarkdownExporter.If the purpose is to avoid having for example GitHub MarkdownExporter twice in the merged list, I see the logic in going through the lists of exporters and remove duplicates. But it has to be on something else or more that just the System.Type.