Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dedal
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
dedal
Commits
5957334c
Commit
5957334c
authored
2 months ago
by
Jithu Murugan
Browse files
Options
Downloads
Patches
Plain Diff
- Corrected the failing tests.
parent
ecdff057
No related branches found
No related tags found
2 merge requests
!6
ci(dedal): implement coverage calculation for the library
,
!4
feat(spack_operation): implement setup_spack_env functionality
Pipeline
#59641
failed with stages
in 26 minutes and 20 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+10
-2
10 additions, 2 deletions
.gitlab-ci.yml
with
10 additions
and
2 deletions
.gitlab-ci.yml
+
10
−
2
View file @
5957334c
...
...
@@ -32,10 +32,14 @@ unit_tests:
-
./dedal/utils/bootstrap.sh
-
pip install -e .[test]
script
:
-
coverage run s --tb=short --junitxml=test-results.xml
-m pytest
./dedal/tests/unit_tests
-
coverage run
-m pytest -
s --tb=short --junitxml=test-results.xml ./dedal/tests/unit_tests
-
coverage xml -o coverage_unit.xml
artifacts
:
when
:
always
reports
:
junit
:
test-results.xml
paths
:
-
test-results.xml
-
coverage_unit.xml
expire_in
:
1 week
...
...
@@ -49,11 +53,15 @@ integration_tests:
-
./dedal/utils/bootstrap.sh
-
pip install -e .[test]
script
:
-
coverage run s --tb=short --junitxml=test-results.xml
-m pytest
./dedal/tests/integration_tests
-
coverage run
-m pytest -
s --tb=short --junitxml=test-results.xml ./dedal/tests/integration_tests
-
coverage xml -o coverage_integration.xml
needs
:
[
"
unit_tests"
]
artifacts
:
when
:
always
reports
:
junit
:
test-results.xml
paths
:
-
test-results.xml
-
coverage_integration.xml
expire_in
:
1 week
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment