Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
CaosDB Python Integration Tests
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
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
Code review analytics
Issue 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
caosdb
Software
CaosDB Python Integration Tests
Merge requests
!89
Integration Test Suggestions - Inttest
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Integration Test Suggestions - Inttest
f-local-inttests-suggestions
into
f-local-inttests
Overview
0
Commits
9
Pipelines
9
Changes
6
Merged
I. Nüske
requested to merge
f-local-inttests-suggestions
into
f-local-inttests
5 months ago
Overview
0
Commits
9
Pipelines
9
Changes
6
0
0
Merge request reports
Compare
f-local-inttests
version 6
915b4d71
5 months ago
version 5
7c2fa055
5 months ago
version 4
388962db
5 months ago
version 3
7ec295fa
5 months ago
version 2
02f8927d
5 months ago
version 1
40fbb521
5 months ago
f-local-inttests (base)
and
latest version
latest version
dee5b03a
9 commits,
5 months ago
version 6
915b4d71
8 commits,
5 months ago
version 5
7c2fa055
7 commits,
5 months ago
version 4
388962db
6 commits,
5 months ago
version 3
7ec295fa
5 commits,
5 months ago
version 2
02f8927d
4 commits,
5 months ago
version 1
40fbb521
3 commits,
5 months ago
6 files
+
45
−
38
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
.docker/Dockerfile
+
6
−
2
View file @ dee5b03a
Edit in single-file editor
Open in Web IDE
Show full file
@@ -11,11 +11,12 @@ RUN apt-get update && \
ARG
PYLIB
RUN
echo
"PYLIB=
${
PYLIB
}
"
COPY
.docker/wait-for-it.sh /wait-for-it.sh
COPY
. /git
RUN
pip
install
-r
/git/requirements.txt
ADD
https://gitlab.indiscale.com/api/v4/projects/97/repository/commits/${PYLIB} \
pylib_version.json
RUN
git clone https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git
&&
\
cd
caosdb-pylib
&&
git checkout
${
PYLIB
}
&&
pip3
install
.
COPY
. /git
# Delete .git because it is huge.
RUN
rm
-r
/git/.git
@@ -30,5 +31,8 @@ CMD /wait-for-it.sh caosdb-server:10443 -t 500 -- \
# ... install pylinkahead.ini and the server-side scripts
cp /git/.docker/sss_pylinkahead.ini /scripting/home/.pylinkahead.ini && \
cp -r /git/resources /scripting/bin-debug && \
# ... put out general version information
python3 --version && \
python3 -c "import linkahead; print(linkahead.version.version)" && \
# ... and run tests
tox
pytest --cov=linkahead -vv tests
Loading