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
ffec9392
Commit
ffec9392
authored
4 years ago
by
Bert Palm
🎇
Browse files
Options
Downloads
Patches
Plain Diff
new CI
parent
1b6099d2
No related branches found
No related tags found
3 merge requests
!271
Static expansion of regular expressions
,
!260
Follow-Up Translations
,
!237
Flagger Translations
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+50
-29
50 additions, 29 deletions
.gitlab-ci.yml
with
50 additions
and
29 deletions
.gitlab-ci.yml
+
50
−
29
View file @
ffec9392
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
default
:
image
:
python:3.8
before_script
:
-
export DEBIAN_FRONTEND=noninteractive
-
apt-get -qq update
-
apt-get -qq install -y make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev python-openssl git > /dev/null
-
export DEBIAN_FRONTEND=dialog
-
export LC_ALL=C.UTF-8
-
export LANG=C.UTF-8
-
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
-
export PYENV_ROOT="$HOME/.pyenv"
-
export PATH="$PYENV_ROOT/bin:$PATH"
-
eval "$(pyenv init -)"
test:python37
:
-
pip install --upgrade pip
-
pip install pytest
-
pip install -r requirements.txt
# test saqc with python 3.7
python37
:
stage
:
test
image
:
python:3.7
script
:
-
pyenv install 3.7.5
-
pyenv shell 3.7.5
-
pip install --upgrade pip
-
pip install -r requirements.txt
-
python -m pytest --ignore test/lib test
-
pytest tests/core tests/flagger tests/funcs
-
python -m saqc --config ressources/data/config_ci.csv --data ressources/data/data.csv --outfile /tmp/test.csv
test:python38
:
# test saqc with python 3.8
python38
:
stage
:
test
script
:
-
pyenv install 3.8.0
-
pyenv shell 3.8.0
-
pip install --upgrade pip
-
pip install -r requirements.txt
-
python -m pytest --ignore test/lib test
-
pytest tests/core tests/flagger tests/funcs
-
python -m saqc --config ressources/data/config_ci.csv --data ressources/data/data.csv --outfile /tmp/test.csv
# Make html docu with sphinx
# test lib saqc
testLib
:
stage
:
test
script
:
-
pytest tests/lib
# fuzzy testing saqc
fuzzy
:
stage
:
test
script
:
-
pytest tests/fuzzy
allow_failure
:
true
# make (visual) coverage in gitlab merge request diff's
coverage
:
stage
:
test
script
:
-
pip install pytest-cov coverage
-
pytest --cov=saqc tests/core tests/flagger tests/funcs
-
coverage xml
# regex to find the coverage percentage in the job output
coverage
:
'
/^TOTAL.+?(\d+\%)$/'
artifacts
:
reports
:
cobertura
:
coverage.xml
# make html docu with sphinx
pages
:
stage
:
deploy
script
:
-
pyenv install 3.8.0
-
pyenv shell 3.8.0
-
pip install --upgrade pip
-
pip install -r requirements.txt
-
cd sphinx-doc/
-
pip install -r requirements_sphinx.txt
-
make doc
...
...
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