Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ FROM developer AS build
WORKDIR /app
COPY . /app
RUN chmod o+wrX .
ENV PATH=/app/.venv/bin:$PATH

# Tell uv sync to install python in a known location so we can copy it out later
ENV UV_PYTHON_INSTALL_DIR=/python
Expand Down Expand Up @@ -56,7 +57,6 @@ COPY --from=build /python /python

# Copy the environment, but not the source code
COPY --from=build /app/.venv /app/.venv
ENV PATH=/app/.venv/bin:$PATH

# change this entrypoint if it is not the same as the repo
ENTRYPOINT ["fastcs-example"]
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
requires = ["setuptools>=64", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"

# test change

[project]
name = "fastcs-example"
classifiers = [
Expand All @@ -14,6 +16,7 @@ classifiers = [
description = "An example simulation IOC for testing fastCS"
dependencies = [
"fastcs",
"stdio-socket",
] # Add project dependencies here, e.g. ["click", "numpy"]
dynamic = ["version"]
license.file = "LICENSE"
Expand Down Expand Up @@ -110,7 +113,7 @@ commands = [
description = "Run tests with coverage"
commands = [
[
"pytest",
"pytest",
"--cov=fastcs_example",
"--cov-report",
"term",
Expand Down
18 changes: 17 additions & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading