Skip to content
Snippets Groups Projects
Commit 417081eb authored by Wout De Nolf's avatar Wout De Nolf
Browse files

Merge branch '14-ci-pydantic-failure' into 'main'

Resolve "CI pydantic failure"

Closes #14

See merge request !79
parents 9efc76cc 0222c349
No related branches found
No related tags found
1 merge request!79Resolve "CI pydantic failure"
Pipeline #172929 failed
......@@ -2,6 +2,11 @@ include:
- project: dau/ci/pyci
file: .gitlab-ci-template.yml
variables:
WARNING1: "ignore::pydantic.warnings.PydanticDeprecatedSince20" # Issue in https://github.com/redis/redis-om-python/issues/609
WARNING2: "ignore::UserWarning:pydantic._internal._config" # redis-om is using deprecated configuration
IGNORE_WARNINGS: "-W ${WARNING1} -W ${WARNING2}"
test-3.7:
extends: .test-3.7
......@@ -12,6 +17,8 @@ test-3.9-master:
- pip install blissrepo/blissdata
- rm -rf blissrepo
- !reference [.test-3.9, before_script]
variables:
PYTEST_WARNINGS: "-W error ${IGNORE_WARNINGS}"
test-3.9-id31_2.0:
extends: .test-3.9
......@@ -20,6 +27,8 @@ test-3.9-id31_2.0:
- pip install blissrepo/blissdata
- rm -rf blissrepo
- !reference [.test-3.9, before_script]
variables:
PYTEST_WARNINGS: "-W error ${IGNORE_WARNINGS}"
test-3.9-1.11.x:
extends: .test-3.9
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment