File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ concurrency:
18
18
cancel-in-progress : true
19
19
20
20
env :
21
+ HOMEBREW_NO_INSTALL_CLEANUP : 1 # Speedup brew install. Environments are isolated, no need to cleanup old versions
22
+ NONINTERACTIVE : 1 # Required for brew install on CI
21
23
PIP_DISABLE_PIP_VERSION_CHECK : 1
22
24
FORCE_COLOR : 1
23
25
TERM : xterm-256color # needed for FORCE_COLOR to work on mypy on Ubuntu, see https://github.com/python/mypy/issues/13817
81
83
PYTHON_EXECUTABLE="xvfb-run python"
82
84
else
83
85
if [ "${{ runner.os }}" = "macOS" ] && [ -n "$PACKAGES" ]; then
84
- NONINTERACTIVE=1 brew install $PACKAGES
86
+ brew install $PACKAGES
85
87
fi
86
88
87
89
if [ "${{ runner.os }}" = "Windows" ] && [ -n "$PACKAGES" ]; then
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ permissions:
12
12
contents : read
13
13
14
14
env :
15
+ HOMEBREW_NO_INSTALL_CLEANUP : 1 # Speedup brew install. Environments are isolated, no need to cleanup old versions
16
+ NONINTERACTIVE : 1 # Required for brew install on CI
15
17
PIP_DISABLE_PIP_VERSION_CHECK : 1
16
18
FORCE_COLOR : 1
17
19
TERM : xterm-256color # needed for FORCE_COLOR to work on mypy on Ubuntu, see https://github.com/python/mypy/issues/13817
70
72
else
71
73
if [ "${{ runner.os }}" = "macOS" ] && [ -n "$PACKAGES" ]; then
72
74
echo "Installing Homebrew packages: $PACKAGES"
73
- NONINTERACTIVE=1 brew install $PACKAGES
75
+ brew install $PACKAGES
74
76
fi
75
77
76
78
if [ "${{ runner.os }}" = "Windows" ] && [ -n "$PACKAGES" ]; then
You can’t perform that action at this time.
0 commit comments