Add Node.js to test containers for sexp.js parity tests
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m39s

Node 20 from Debian packages — needed to run test_sexp_js.py which
verifies JS renderer output matches Python renderer output.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-28 23:30:17 +00:00
parent e8a991834b
commit 2df1014ee3
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,10 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
WORKDIR /app
# Node.js for sexp.js parity tests
RUN apt-get update && apt-get install -y --no-install-recommends nodejs && \
rm -rf /var/lib/apt/lists/*
# Install shared deps (includes pytest, pytest-asyncio)
COPY shared/requirements.txt ./requirements-shared.txt
RUN pip install --no-cache-dir -r requirements-shared.txt pytest-watch