Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
Modularizovatelná webová aplikace s modulem pro správu cílů - BC-304 Crew
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ASWI
ASWI 2021
Modularizovatelná webová aplikace s modulem pro správu cílů - BC-304 Crew
Merge requests
!2
Code coverage
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Code coverage
code-coverage
into
dev
Overview
0
Commits
8
Pipelines
5
Changes
4
Merged
Milan Hotovec
requested to merge
code-coverage
into
dev
3 years ago
Overview
0
Commits
8
Pipelines
5
Changes
4
Expand
0
0
Merge request reports
Compare
dev
version 4
c8ad47ed
3 years ago
version 3
d519938c
3 years ago
version 2
e7a035b0
3 years ago
version 1
fa80492f
3 years ago
dev (base)
and
latest version
latest version
c9af9569
8 commits,
3 years ago
version 4
c8ad47ed
6 commits,
3 years ago
version 3
d519938c
4 commits,
3 years ago
version 2
e7a035b0
3 commits,
3 years ago
version 1
fa80492f
2 commits,
3 years ago
4 files
+
21
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
11
−
1
Options
@@ -73,7 +73,17 @@ test_job_windows:
-
$CI_COMMIT_MESSAGE =~ /merge branch/i
#auto trigger for merge requests from command
-
$CI_COMMIT_MESSAGE =~ /Merge remote-tracking branch/i
#auto trigger for remote merge requests from command
script
:
-
'
dotnet
test'
#Run tests using console mode of MSTest (Unit)
-
'
dotnet
test
--collect:"XPlat
Code
Coverage"
-r
"./TestResults/"'
#Run tests using console mode of MSTest (Unit)¨
-
'
reportgenerator
"-reports:.\TestResults\*\coverage.cobertura.xml"
"-targetdir:coveragereport"
-reporttypes:Html'
-
'
(Get-Content
.\coveragereport\index.html)
-match
"Line
coverage:"'
artifacts
:
expire_in
:
2 days
paths
:
-
'
./coveragereport'
reports
:
cobertura
:
-
./TestResults/*/*.xml
#Job for testing linux
test_job_linux
:
stage
:
test
Loading