Skip to content

Commit e1ef5dd

Browse files
committed
Disabling unit tests due to unreliable behavior in GH runners.
First cut of FSH IG exporting. Re-enabling parallelization of unit tests.
1 parent d1cd60b commit e1ef5dd

File tree

6 files changed

+777
-5
lines changed

6 files changed

+777
-5
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Tests
33
on:
44
push:
55
pull_request:
6-
branches: [ main ]
6+
branches: [ main-disabled ]
77
paths:
88
- '**.cs'
99
- '**.csproj'
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"maxParallelThreads": 1,
2+
"maxParallelThreads": 5,
33
"parallelAlgorithm": "conservative",
4-
"parallelizeAssembly": false,
5-
"parallelizeTestCollections": false
4+
"parallelizeAssembly": true,
5+
"parallelizeTestCollections": true
66
}

src/Microsoft.Health.Fhir.CodeGen/Language/Firely/FirelyNetIG.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ private string GetCanonicalNameLiteral(
668668
return CleanName(components.ToPascalCaseWord()) + postfix;
669669
}
670670

671-
/// <summary>Writes an extension.</summary>
671+
/// <summary>Writes the canonical URL of a conformance resource.</summary>
672672
/// <param name="sd">The SD.</param>
673673
private void WriteCanonicalUrl(IConformanceResource cr, PackageData packageData, string name, ExportStreamWriter? writer = null)
674674
{

0 commit comments

Comments
 (0)