Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-pylib
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-pylib
Commits
57f8bdc8
Commit
57f8bdc8
authored
1 year ago
by
Florian Spreckelsen
Browse files
Options
Downloads
Plain Diff
Merge branch 'f-py312' into 'dev'
Add Python 3.12 to tests See merge request
!132
parents
33af590b
b19343e4
No related branches found
Branches containing commit
No related tags found
2 merge requests
!143
Release 0.15.0
,
!132
Add Python 3.12 to tests
Pipeline
#48879
passed with warnings
1 year ago
Stage: code_style
Stage: linting
Stage: test
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+17
-1
17 additions, 1 deletion
.gitlab-ci.yml
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
tox.ini
+3
-2
3 additions, 2 deletions
tox.ini
with
22 additions
and
3 deletions
.gitlab-ci.yml
+
17
−
1
View file @
57f8bdc8
...
@@ -62,7 +62,7 @@ unittest_py3.7:
...
@@ -62,7 +62,7 @@ unittest_py3.7:
script
:
&python_test_script
script
:
&python_test_script
# Python docker has problems with tox and pip so use plain pytest here
# Python docker has problems with tox and pip so use plain pytest here
-
touch ~/.pylinkahead.ini
-
touch ~/.pylinkahead.ini
-
pip install nose pytest pytest-cov
python-dateutil
jsonschema>=4.4.0
-
pip install
py
nose pytest pytest-cov jsonschema>=4.4.0
setuptools
-
pip install .
-
pip install .
-
python -m pytest unittests
-
python -m pytest unittests
...
@@ -100,6 +100,22 @@ unittest_py3.11:
...
@@ -100,6 +100,22 @@ unittest_py3.11:
image
:
python:3.11
image
:
python:3.11
script
:
*python_test_script
script
:
*python_test_script
unittest_py3.12
:
tags
:
[
docker
]
stage
:
test
needs
:
[
]
image
:
python:3.12
script
:
*python_test_script
unittest_py3.13
:
allow_failure
:
true
tags
:
[
docker
]
stage
:
test
needs
:
[
]
image
:
python:3.13-rc
script
:
*python_test_script
# Trigger building of server image and integration tests
# Trigger building of server image and integration tests
trigger_build
:
trigger_build
:
stage
:
deploy
stage
:
deploy
...
...
This diff is collapsed.
Click to expand it.
CHANGELOG.md
+
2
−
0
View file @
57f8bdc8
...
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
...
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ###
### Added ###
*
Support for Python 3.12
### Changed ###
### Changed ###
### Deprecated ###
### Deprecated ###
...
...
This diff is collapsed.
Click to expand it.
tox.ini
+
3
−
2
View file @
57f8bdc8
[tox]
[tox]
envlist
=
py37, py38, py39, py310, py311
envlist
=
py37, py38, py39, py310, py311
, py312, py313
skip_missing_interpreters
=
true
skip_missing_interpreters
=
true
[testenv]
[testenv]
deps
=
.
deps
=
.
nose
py
nose
pytest
pytest
pytest-cov
pytest-cov
jsonschema>=4.4.0
jsonschema>=4.4.0
setuptools
commands
=
py.test --cov=caosdb -vv {posargs}
commands
=
py.test --cov=caosdb -vv {posargs}
[flake8]
[flake8]
...
...
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