Skip to content

Commit

Permalink
Disabling unit tests due to unreliable behavior in GH runners.
Browse files Browse the repository at this point in the history
First cut of FSH IG exporting.
Re-enabling parallelization of unit tests.
  • Loading branch information
GinoCanessa committed Sep 12, 2024
1 parent d1cd60b commit e1ef5dd
Show file tree
Hide file tree
Showing 6 changed files with 777 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Tests
on:
push:
pull_request:
branches: [ main ]
branches: [ main-disabled ]
paths:
- '**.cs'
- '**.csproj'
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.Health.Fhir.CodeGen.Tests/xunit.runner.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"maxParallelThreads": 1,
"maxParallelThreads": 5,
"parallelAlgorithm": "conservative",
"parallelizeAssembly": false,
"parallelizeTestCollections": false
"parallelizeAssembly": true,
"parallelizeTestCollections": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ private string GetCanonicalNameLiteral(
return CleanName(components.ToPascalCaseWord()) + postfix;
}

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

0 comments on commit e1ef5dd

Please sign in to comment.