Skip to content

Commit 4b99112

Browse files
committed
venv
1 parent 655354c commit 4b99112

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/Dockerfile.architectures

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ RUN apt-get update && apt-get install -y \
1919
build-essential \
2020
&& rm -rf /var/lib/apt/lists/*
2121

22-
# RUN python3 -m pip install --upgrade pip setuptools wheel
22+
RUN python -m venv /opt/venv
23+
ENV PATH="/opt/venv/bin:$PATH"
24+
25+
RUN pip install --upgrade pip setuptools wheel
2326

2427
WORKDIR /ffcx
2528
COPY . .
@@ -31,4 +34,4 @@ RUN pip install \
3134
RUN pip install .[ci,optional]
3235

3336
RUN python -m pytest test/ -n auto -W error
34-
RUN python -m pytest test/ -n auto -W error
37+
RUN python -m pytest demo/ -W error

0 commit comments

Comments
 (0)