Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
DAN
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Container Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Automatic Text Recognition
DAN
Merge requests
!22
Add test job in CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add test job in CI
add-test-ci
into
main
Overview
0
Commits
2
Pipelines
0
Changes
1
Merged
Yoann Schneider
requested to merge
add-test-ci
into
main
2 years ago
Overview
0
Commits
2
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
e4cdedb6
2 commits,
2 years ago
1 file
+
29
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
29
−
1
Options
@@ -4,7 +4,7 @@ stages:
-
deploy
lint
:
image
:
python:3.
8
image
:
python:3.
10
stage
:
test
cache
:
@@ -24,6 +24,34 @@ lint:
script
:
-
pre-commit run -a
test
:
image
:
python:3.10
stage
:
test
cache
:
paths
:
-
.cache/pip
variables
:
PIP_CACHE_DIR
:
"
$CI_PROJECT_DIR/.cache/pip"
ARKINDEX_API_SCHEMA_URL
:
schema.yml
before_script
:
-
pip install tox
# Download OpenAPI schema from last backend build
-
curl https://assets.teklia.com/arkindex/openapi.yml > schema.yml
# Add system deps for opencv
-
apt-get update -q
-
apt-get install -q -y libgl1
except
:
-
schedules
script
:
-
tox
bump-python-deps
:
stage
:
deploy
image
:
registry.gitlab.com/teklia/devops:latest
Loading