ci: moved dependency to ci pipeline; not needed for dev

This commit is contained in:
2024-01-26 18:02:07 +01:00
parent 5759b2a814
commit 68025e3341
2 changed files with 2 additions and 3 deletions

View File

@ -6,6 +6,7 @@ image: $CI_DOCKER_REGISTRY/python:3.9
#commands to run in the Docker container before starting each job. #commands to run in the Docker container before starting each job.
before_script: before_script:
- pip install -e .[dev] - pip install -e .[dev]
- pip install bec-device-server
# different stages in the pipeline # different stages in the pipeline
stages: stages:

View File

@ -15,9 +15,7 @@ if __name__ == "__main__":
"pyepics", "pyepics",
"pytest", "pytest",
], ],
extras_require={ extras_require={"dev": ["pytest", "pytest-random-order", "black", "coverage"]},
"dev": ["pytest", "pytest-random-order", "black", "coverage", "bec-device-server"]
},
package_data={"ophyd_devices.smaract": ["smaract_sensors.json"]}, package_data={"ophyd_devices.smaract": ["smaract_sensors.json"]},
entry_points={"console_scripts": ["ophyd_test = ophyd_devices:launch"]}, entry_points={"console_scripts": ["ophyd_test = ophyd_devices:launch"]},
version=__version__, version=__version__,