Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SaQC
Manage
Activity
Members
Labels
Plan
Issues
36
Issue boards
Milestones
Wiki
Code
Merge requests
8
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
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rdm-software
SaQC
Commits
d86c5771
Commit
d86c5771
authored
1 year ago
by
Bert Palm
🎇
Browse files
Options
Downloads
Patches
Plain Diff
test ci
parent
591d8990
No related branches found
No related tags found
No related merge requests found
Pipeline
#183029
passed with stages
in 2 minutes and 8 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+0
-122
0 additions, 122 deletions
.gitlab-ci.yml
with
0 additions
and
122 deletions
.gitlab-ci.yml
+
0
−
122
View file @
d86c5771
...
...
@@ -52,128 +52,6 @@ reuse:
-
reuse lint
# ===========================================================
# Testing stage
# ===========================================================
# make (visual) coverage in gitlab merge request diff's
coverage
:
stage
:
test
allow_failure
:
true
script
:
-
pip install pytest-cov coverage
-
pytest --cov=saqc tests --ignore=tests/fuzzy -Werror
after_script
:
-
coverage xml
# regex to find the coverage percentage in the job output
coverage
:
'
/^TOTAL.+?(\d+\%)$/'
artifacts
:
when
:
always
reports
:
coverage_report
:
coverage_format
:
cobertura
path
:
coverage.xml
python38
:
stage
:
test
image
:
python:3.8
script
:
-
pytest tests -Werror --junitxml=report.xml
-
python -m saqc --config docs/resources/data/config.csv --data docs/resources/data/data.csv --outfile /tmp/test.csv
artifacts
:
when
:
always
reports
:
junit
:
report.xml
python39
:
stage
:
test
image
:
python:3.9
script
:
-
pytest tests -Werror --junitxml=report.xml
-
python -m saqc --config docs/resources/data/config.csv --data docs/resources/data/data.csv --outfile /tmp/test.csv
artifacts
:
when
:
always
reports
:
junit
:
report.xml
python310
:
stage
:
test
image
:
python:3.10
script
:
-
pytest tests -Werror --junitxml=report.xml
-
python -m saqc --config docs/resources/data/config.csv --data docs/resources/data/data.csv --outfile /tmp/test.csv
artifacts
:
when
:
always
reports
:
junit
:
report.xml
python311
:
stage
:
test
image
:
python:3.11
script
:
-
pytest tests -Werror --junitxml=report.xml
-
python -m saqc --config docs/resources/data/config.csv --data docs/resources/data/data.csv --outfile /tmp/test.csv
artifacts
:
when
:
always
reports
:
junit
:
report.xml
doctest
:
stage
:
test
script
:
-
cd docs
-
pip install -r requirements.txt
-
make doc
# needed for _api tests
-
make test
# ===========================================================
# Building stage
# ===========================================================
# check if we are able to build a wheel
# and if the import works
wheel38
:
stage
:
build
image
:
python:3.8
script
:
-
pip install wheel
-
pip wheel .
-
pip install .
-
python -c 'import saqc; print(f"{saqc.__version__=}")'
wheel39
:
stage
:
build
image
:
python:3.9
script
:
-
pip install wheel
-
pip wheel .
-
pip install .
-
python -c 'import saqc; print(f"{saqc.__version__=}")'
wheel310
:
stage
:
build
image
:
python:3.10
script
:
-
pip install wheel
-
pip wheel .
-
pip install .
-
python -c 'import saqc; print(f"{saqc.__version__=}")'
wheel311
:
stage
:
build
image
:
python:3.11
script
:
-
pip install wheel
-
pip wheel .
-
pip install .
-
python -c 'import saqc; print(f"{saqc.__version__=}")'
docs
:
stage
:
build
script
:
-
cd docs
-
pip install -r requirements.txt
-
make doc
# ===========================================================
# Extra Pipeline (run with a successful run of all other jobs on develop)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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