mirror of https://github.com/google/oss-fuzz.git
Fix coverage script issues (#5764)
Make sure to install MarkupSafe==0.23 instead of >=0.23 which breaks. Probably the solution is to upgrade Jinja upstream. Fixes #5763
This commit is contained in:
parent
a9fe789db7
commit
8221561c34
|
@ -52,7 +52,8 @@ RUN apt-get update && apt-get install -y \
|
|||
|
||||
RUN git clone https://chromium.googlesource.com/chromium/src/tools/code_coverage /opt/code_coverage && \
|
||||
pip3 install wheel && \
|
||||
pip3 install -r /opt/code_coverage/requirements.txt
|
||||
pip3 install -r /opt/code_coverage/requirements.txt && \
|
||||
pip3 install MarkupSafe==0.23
|
||||
|
||||
# Default environment options for various sanitizers.
|
||||
# Note that these match the settings used in ClusterFuzz and
|
||||
|
|
Loading…
Reference in New Issue