File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ jobs:
100100 - name : Install the package
101101 run : |
102102 python -m pip install .[all]
103- python -m pip install amici
103+ AMICI_PARALLEL_COMPILE="" python -m pip install amici
104104
105105 # ############################################
106106 # # Lint
@@ -169,6 +169,8 @@ jobs:
169169 run : python -m pip install .[tests]
170170
171171 - name : Run the tests
172+ env :
173+ AMICI_PARALLEL_COMPILE : " "
172174 run : python -m pytest tests/ --cov=./biosimulators_amici/ --cov-report=xml
173175
174176 - name : Upload the coverage report to Codecov
Original file line number Diff line number Diff line change @@ -48,12 +48,13 @@ RUN apt-get update -y \
4848# Copy code for command-line interface into image and install it
4949COPY . /root/Biosimulators_AMICI
5050RUN pip install pip==23.0.1
51- RUN SETUPTOOLS_SCM_PRETEND_VERSION_FOR_BIOSIMULATORS_AMICI=${VERSION} pip install sympy /root/Biosimulators_AMICI \
51+ RUN SETUPTOOLS_SCM_PRETEND_VERSION_FOR_BIOSIMULATORS_AMICI=${VERSION} pip install /root/Biosimulators_AMICI \
5252 && rm -rf /root/Biosimulators_AMICI
5353# RUN pip install sympy /root/Biosimulators_AMICI amici==${SIMULATOR_VERSION} \
5454# && rm -rf /root/Biosimulators_AMICI
5555ENV VERBOSE=0 \
56- MPLBACKEND=PDF
56+ MPLBACKEND=PDF \
57+ AMICI_PARALLEL_COMPILE=""
5758
5859# Entrypoint
5960ENTRYPOINT ["biosimulators-amici" ]
You can’t perform that action at this time.
0 commit comments