Skip to content

Commit 92698ac

Browse files
authored
Repair CI (#1541)
* Fix devcontainer permissions * Drop autogen pypy tests
1 parent 27f357c commit 92698ac

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.devcontainer/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ FROM ghcr.io/newrelic/newrelic-python-agent-ci:${IMAGE_TAG}
2020
USER root
2121
ARG UID=1001
2222
ARG GID=${UID}
23-
ENV HOME=/home/vscode
23+
ENV HOME=/root
2424
RUN mkdir -p ${HOME} && \
2525
groupadd --gid ${GID} vscode && \
2626
useradd --uid ${UID} --gid ${GID} --home ${HOME} vscode && \
27-
chown -R ${UID}:${GID} /home/vscode
27+
chown -R ${UID}:${GID} ${HOME}/
2828

29-
# Allow uv to download Python versions manually
29+
# Restrict uv to only download Python versions manually
3030
ENV UV_PYTHON_DOWNLOADS=manual
3131

3232
# Set user

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ envlist =
175175
python-logger_logging-{py38,py39,py310,py311,py312,py313,pypy310},
176176
python-logger_loguru-{py38,py39,py310,py311,py312,py313,pypy310}-logurulatest,
177177
python-logger_structlog-{py38,py39,py310,py311,py312,py313,pypy310}-structloglatest,
178-
python-mlmodel_autogen-{py310,py311,py312,py313,pypy310}-autogen061,
179-
python-mlmodel_autogen-{py310,py311,py312,py313,pypy310}-autogenlatest,
178+
python-mlmodel_autogen-{py310,py311,py312,py313}-autogen061,
179+
python-mlmodel_autogen-{py310,py311,py312,py313}-autogenlatest,
180180
python-mlmodel_gemini-{py39,py310,py311,py312,py313},
181181
python-mlmodel_langchain-{py39,py310,py311,py312},
182182
;; Package not ready for Python 3.13 (uses an older version of numpy)

0 commit comments

Comments
 (0)