Skip to content

Commit 97f8550

Browse files
authored
toolset: Update colorama to version 0.4.6 (TechEmpower#9082)
1 parent d69a35f commit 97f8550

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ RUN apt-get -yqq update && \
1818
libpq-dev \
1919
pkg-config \
2020
python3 \
21+
python3-colorama \
2122
python3-dev \
23+
python3-dnspython \
24+
python3-packaging \
2225
python3-pip \
2326
python3-psutil \
2427
python3-psycopg2 \
@@ -28,7 +31,6 @@ RUN apt-get -yqq update && \
2831
# Ubuntu's equivalent packages are too old and/or broken.
2932
pip3 install \
3033
--break-system-packages \
31-
colorama==0.3.1 \
3234
docker==7.0.0 \
3335
mysqlclient==2.2.4 \
3436
pymongo==4.7.2

frameworks/C/h2o/benchmark_config.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"framework": "h2o",
3+
"maintainers": ["volyrique"],
34
"tests": [{
45
"default": {
56
"json_url": "/json",

toolset/run-tests.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
from toolset.utils.output_helper import log
1111

1212
# Enable cross-platform colored output
13-
from colorama import init, Fore
14-
init()
13+
from colorama import Fore, just_fix_windows_console
14+
just_fix_windows_console()
1515

1616

1717
class StoreSeqAction(argparse.Action):

0 commit comments

Comments
 (0)