Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-advanced-user-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-advanced-user-tools
Commits
5f8ef3fe
Verified
Commit
5f8ef3fe
authored
4 months ago
by
Daniel Hornung
Browse files
Options
Downloads
Patches
Plain Diff
MAINT: Explicit dependencies for testing and documentation.
parent
dccc2ce8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!128
MNT: Added a warning when column metadata is not configured, and a better...
,
!122
Explicit dependencies for testing, documentation, ...
Pipeline
#57869
passed
4 months ago
Stage: setup
Stage: cert
Stage: style
Stage: unittest
Stage: integrationtest
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+2
-2
2 additions, 2 deletions
.gitlab-ci.yml
setup.py
+13
-5
13 additions, 5 deletions
setup.py
with
15 additions
and
7 deletions
.gitlab-ci.yml
+
2
−
2
View file @
5f8ef3fe
...
...
@@ -139,9 +139,9 @@ unittest_py38:
stage
:
unittest
image
:
python:3.8
script
:
&python_test_script
-
pip install pynose pandas
pytest pytest-cov gitignore-parser openpyxl>=3.0.7 xlrd==1.2 h5py
-
pip install pynose pandas
-
pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev
-
pip install .
-
pip install .
[test,h5-crawler,gitignore-parser]
-
pytest --cov=caosadvancedtools unittests
unittest_py310
:
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
13
−
5
View file @
5f8ef3fe
...
...
@@ -165,13 +165,21 @@ def setup_package():
],
extras_require
=
{
"
h5-crawler
"
:
[
"
h5py>=3.3.0
"
,
],
"
gitignore-parser
"
:
[
"
gitignore-parser >=0.1.0
"
,
],
"
doc
"
:
[
"
sphinx
"
,
"
sphinx-autoapi
"
,
"
sphinx-rtd-theme
"
,
"
recommonmark >= 0.6.0
"
,
],
"
test
"
:
[
"
gitignore-parser
"
,
"
pytest
"
,
"
pytest-pythonpath
"
,
"
pytest-cov
"
,
"
coverage>=4.4.2
"
,
],
},
setup_requires
=
[
"
pytest-runner>=2.0,<3dev
"
],
tests_require
=
[
"
pytest
"
,
"
pytest-pythonpath
"
,
"
pytest-cov
"
,
"
coverage>=4.4.2
"
,
],
packages
=
find_packages
(
'
src
'
),
package_dir
=
{
''
:
'
src
'
},
entry_points
=
{
"
console_scripts
"
:
[
...
...
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