Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
biboumi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
99
Issues
99
List
Boards
Labels
Service Desk
Milestones
Merge Requests
12
Merge Requests
12
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
louiz’
biboumi
Commits
747f04ee
Commit
747f04ee
authored
Apr 22, 2016
by
louiz’
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move the e2e tests out of make check
parent
3119ec72
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
.gitlab-ci.yml
.gitlab-ci.yml
+1
-0
CMakeLists.txt
CMakeLists.txt
+3
-1
No files found.
.gitlab-ci.yml
View file @
747f04ee
...
...
@@ -20,6 +20,7 @@ build:
-
make biboumi -j$(nproc)
-
make coverage -j$(nproc)
-
make check -j$(nproc)
-
make e2e -j$(nproc)
-
make rpm -j$(nproc)
artifacts
:
paths
:
...
...
CMakeLists.txt
View file @
747f04ee
...
...
@@ -195,8 +195,10 @@ if(NOT EXISTS ${CMAKE_SOURCE_DIR}/tests/catch.hpp)
add_dependencies
(
test_suite catch
)
endif
()
add_custom_target
(
check COMMAND
"test_suite"
COMMAND
"python3"
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/tests/end_to_end/"
DEPENDS test_suite biboumi
)
add_custom_target
(
e2e COMMAND
"python3"
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/tests/end_to_end/"
DEPENDS biboumi
)
#
## Code coverage
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment