1
0
mirror of https://gitlab.com/MisterBiggs/testing-framework-comparison.git synced 2025-08-02 19:41:22 +00:00

init comit

This commit is contained in:
2025-05-16 14:35:04 -06:00
commit a44cd7dafe
8 changed files with 271 additions and 0 deletions

15
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,15 @@
variables:
UV_VERSION: 0.5
PYTHON_VERSION: 3.12
BASE_LAYER: bookworm-slim
# GitLab CI creates a separate mountpoint for the build directory,
# so we need to copy instead of using hard links.
UV_LINK_MODE: copy
pytest:
image: ghcr.io/astral-sh/uv:$UV_VERSION-python$PYTHON_VERSION-$BASE_LAYER
script:
- uv run pytest
artifacts:
reports:
junit: junit.xml