We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d15b8e commit ac5ccf2Copy full SHA for ac5ccf2
docker/Dockerfile.python_wheels
@@ -21,5 +21,9 @@ COPY --exclude=.git --exclude=.github --exclude=docker --exclude=dist \
21
RUN ${PYTHON_CMD} -m build --wheel
22
RUN auditwheel repair dist/*.whl --wheel-dir dist_out
23
24
+FROM build AS test
25
+RUN ${PYTHON_CMD} -m pip install dist_out/*.whl
26
+RUN ${PYTHON_CMD} -m unittest discover -v -s tests -p '*.py'
27
+
28
FROM scratch AS export
29
COPY --from=build /src/dist_out /dist
0 commit comments