Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
huaxing-yuan authored Jan 8, 2025
2 parents 699a035 + 42ea50b commit 771fc26
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish-PROnly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
run: |
if("${{github.base_ref}}".Contains("main")) { $suffix = "" } else { $suffix = "-preview" }
.\.sonar\scanner\dotnet-sonarscanner begin /k:"AxaGuilDEv_webengine-dotnet" /o:"axaguildev" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.vscoveragexml.reportsPaths=coverage.xml
dotnet build "./src" --no-restore --configuration Debug -p:AssemblyVersion=1.2.${{github.run_number}} -p:Version=1.2.${{github.run_number}}$suffix
dotnet build "./src" --no-restore --configuration Debug -p:AssemblyVersion=1.2.${{github.run_number}} -p:Version=1.2.${{github.run_number}}-$suffix
dotnet-coverage collect 'dotnet test "./src/WebEngine.Test" --filter TestCategory!=Mobile' -f xml -o 'coverage.xml'
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
Expand Down
1 change: 0 additions & 1 deletion src/AxaFrance.WebEngine.ReportViewer/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@
<RowDefinition Height="200" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>

<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
Expand Down
1 change: 1 addition & 0 deletions src/Samples.KeywordDriven/TestCases/TC_InsuranceQuote.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public TC_InsuranceQuote() {
new AxaFrance.WebEngine.TestStep{ Action = nameof(ValidateContract)},
new AxaFrance.WebEngine.TestStep{ Action = nameof(Logout)},
};
MeasureResourceUsage = true;
}
}
}

0 comments on commit 771fc26

Please sign in to comment.