forked from Open-EO/openeo-python-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile.python311
More file actions
30 lines (27 loc) · 924 Bytes
/
Jenkinsfile.python311
File metadata and controls
30 lines (27 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env groovy
/*
This Jenkinsfile is used to run tests with Python 3.11 using the VITO CI system.
No artifacts are built or published - this is for testing compatibility only.
This Jenkinsfile uses the internal "biggeo/jenkinslib.git" library.
Information about the pythonPipeline method can be found in pythonPipeline.groovy
*/
@Library('lib')_
pythonPipeline {
package_name = 'openeo_driver'
wipeout_workspace = true
python_version = ["3.11"]
downstream_job = ''
wheel_repo = ''
wheel_repo_dev = ''
extras_require = 'dev'
upload_dev_wheels = false
build_wheel = false
pep440 = true
extra_env_variables = [
/* Set pytest `basetemp` inside Jenkins workspace. (Note: this is intentionally Jenkins specific, instead of a global pytest.ini thing.) */
"PYTEST_DEBUG_TEMPROOT=pytest-tmp",
]
pre_test_script = 'pre_test.sh'
enable_uv = true
enable_caching = true
}