We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e048021 commit 8b76722Copy full SHA for 8b76722
.github/workflows/develop.yml
@@ -53,7 +53,10 @@ jobs:
53
run: dotnet test -c Debug --no-build -v n --filter-trait Category=Unit
54
- name: Integration Tests
55
run: |
56
- dotnet test --project tests/HydraScript.IntegrationTests -c Debug --no-build -v n --coverage --coverage-output-format cobertura --coverage-output coverage.cobertura.xml
+ dotnet test --project tests/HydraScript.IntegrationTests `
57
+ -c Debug --no-build -v n `
58
+ --coverage --coverage-output-format cobertura --coverage-output coverage.cobertura.xml `
59
+ --exclude-by-attribute 'GeneratedCode'
60
mkdir coverage-report
61
- name: Code Coverage Summary Report For Merge Request
62
if: github.event_name == 'pull_request'
0 commit comments