Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
eraser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenLicht
eraser
Merge requests
!9
Resolve "Split tests into service-based and normal tests"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Split tests into service-based and normal tests"
34-split-tests-into-service-based-and-normal-tests
into
dev
Overview
0
Commits
4
Pipelines
5
Changes
6
Merged
René Schöne
requested to merge
34-split-tests-into-service-based-and-normal-tests
into
dev
4 years ago
Overview
0
Commits
4
Pipelines
5
Changes
6
Closes
#34 (closed)
Edited
4 years ago
by
René Schöne
0
0
Merge request reports
Compare
dev
version 3
a5dc9daa
4 years ago
version 2
51bb3674
4 years ago
version 1
299cee56
4 years ago
dev (base)
and
latest version
latest version
22ea7d37
4 commits,
4 years ago
version 3
a5dc9daa
3 commits,
4 years ago
version 2
51bb3674
2 commits,
4 years ago
version 1
299cee56
1 commit,
4 years ago
6 files
+
82
−
73
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
.gitlab-ci.yml
+
14
−
7
View file @ 22ea7d37
Edit in single-file editor
Open in Web IDE
Show full file
@@ -12,10 +12,13 @@ variables:
# # Improve performance with overlayfs.
# DOCKER_DRIVER: overlay2
GRADLE_OPTS
:
"
-Dorg.gradle.daemon=false"
TEST_REPORTS
:
"
/builds/OpenLicht/eraser/eraser-base/build/reports/tests/test/"
TEST_LOG
:
"
/builds/OpenLicht/eraser/eraser-base/logs/eraser-test.log"
JACOCO_REPORT
:
"
/builds/OpenLicht/eraser/eraser-base/build/reports/jacoco/test/jacocoTestReport.xml"
TESTCONTAINERS_RYUK_DISABLED
:
"
true"
TEST_REPORTS
:
"
eraser-base/build/reports/tests/"
TEST_LOG
:
"
eraser-base/logs/eraser-test.log"
JACOCO_REPORT
:
"
*/build/reports/jacoco/all-tests/jacoco*Report.xml"
# settings for influxdb
INFLUXDB_DB
:
"
jastaddHistory"
INFLUXDB_USER
:
"
root"
INFLUXDB_USER_PASSWORD
:
"
root"
before_script
:
-
export GRADLE_USER_HOME=`pwd`/.gradle
@@ -29,7 +32,7 @@ build:
image
:
openjdk:8
stage
:
build
script
:
-
./gradlew --console=plain
--build-cache
assemble
-
./gradlew --console=plain assemble
artifacts
:
paths
:
-
"
eraser-base/src/gen"
@@ -39,10 +42,15 @@ test:
tags
:
-
docker
stage
:
test
services
:
-
name
:
"
eclipse-mosquitto:1.6.12"
alias
:
"
mqtt"
-
name
:
"
influxdb:1.8.4"
alias
:
"
influx"
needs
:
-
build
script
:
-
./gradlew
--continue
--console=plain --info
check jacocoTestReport
-
./gradlew --console=plain --info
allTests
artifacts
:
when
:
always
paths
:
@@ -56,7 +64,6 @@ coverage:
needs
:
-
test
script
:
# - ./gradlew --continue --console=plain -x test jacocoTestReport
-
pip install --user untangle
-
python print-coverage.py
coverage
:
"
/Covered
(
\\
d{1,3}
\\
.
\\
d{2}%)
of
instructions
for
all
projects
\\
./"
Loading