Skip to content

Commit

Permalink
Jenkinsfile: attempt to speed up jenkins build
Browse files Browse the repository at this point in the history
don't install sphinx and related doc building tools to just run tests
  • Loading branch information
soxofaan committed Aug 9, 2023
1 parent 6f1c10c commit b666ed9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pythonPipeline {
package_name = 'openeo'
wipeout_workspace = true
python_version = ["3.8"]
extras_require = 'dev'
extras_require = 'tests'
upload_dev_wheels = false
wheel_repo = 'python-openeo'
wheel_repo_dev = 'python-openeo'
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
'oschmod>=0.3.12; sys_platform == "win32"',
],
extras_require={
"tests": tests_require,
"dev": tests_require + docs_require,
"docs": docs_require,
"oschmod": [ # install oschmod even when platform is not Windows, e.g. for testing in CI.
Expand Down

0 comments on commit b666ed9

Please sign in to comment.