Skip to content

Commit 1b0c445

Browse files
committed
ci: move DI exploration tests to GitLab
We extract the exploration tests from the rest of the framework tests and move them to GitLab.
1 parent c335af9 commit 1b0c445

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ include:
3737
- local: ".gitlab/testrunner.yml"
3838
- local: ".gitlab/benchmarks/serverless.yml"
3939
- local: ".gitlab/native.yml"
40+
- local: ".gitlab/debugging/exploration.yml"
4041

4142
tests-gen:
4243
stage: tests

.gitlab/debugging/exploration.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
exploration-testing:
2+
stage: tests
3+
extends: .testrunner
4+
parallel:
5+
matrix:
6+
- PYTHON_VERSION: "3.8"
7+
BOTO3_TAG: 1.37.38
8+
- PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13"]
9+
BOTO3_TAG: 1.38.44
10+
script: |
11+
pip install -e .
12+
git clone --depth 1 --branch ${BOTO3_TAG} https://github.com/boto/boto3.git
13+
cd boto3
14+
python${PYTHON_VERSION} scripts/ci/install
15+
PYTHONPATH=../tests/debugging/exploration/ python${PYTHON_VERSION} scripts/ci/run-tests
16+
needs: []
17+
artifacts:
18+
paths:
19+
- debugger-expl.txt

0 commit comments

Comments
 (0)