Skip to content

Commit 49c6961

Browse files
pmeiervfdev-5
andauthored
reduce GHA log output (#7267)
Co-authored-by: vfdev <[email protected]>
1 parent 928b05c commit 49c6961

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/test-linux-cpu.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
fi
4040
4141
# Create Conda Env
42-
conda create -yp ci_env python="${PYTHON_VERSION}" numpy libpng jpeg scipy 'ffmpeg<4.3'
42+
conda create -yp ci_env --quiet python="${PYTHON_VERSION}" numpy libpng jpeg scipy 'ffmpeg<4.3'
4343
conda activate /work/ci_env
4444
4545
# Install PyTorch, Torchvision, and testing libraries
@@ -50,8 +50,8 @@ jobs:
5050
-c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${VERSION}*"] \
5151
"${CUDATOOLKIT}"
5252
python3 setup.py develop
53-
python3 -m pip install pytest pytest-mock 'av<10'
53+
python3 -m pip install --progress-bar=off pytest pytest-mock 'av<10'
5454
5555
# Run Tests
5656
python3 -m torch.utils.collect_env
57-
python3 -m pytest --junitxml=test-results/junit.xml -v --durations 20
57+
python3 -m pytest --junitxml=test-results/junit.xml --durations 20

.github/workflows/test-linux-gpu.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
fi
4444
4545
# Create Conda Env
46-
conda create -yp ci_env python="${PYTHON_VERSION}" numpy libpng jpeg scipy 'ffmpeg<4.3'
46+
conda create -yp ci_env --quiet python="${PYTHON_VERSION}" numpy libpng jpeg scipy 'ffmpeg<4.3'
4747
conda activate /work/ci_env
4848
4949
# Install PyTorch, Torchvision, and testing libraries
@@ -54,8 +54,8 @@ jobs:
5454
-c nvidia "pytorch-${CHANNEL}"::pytorch[build="*${VERSION}*"] \
5555
"${CUDATOOLKIT}"
5656
python3 setup.py develop
57-
python3 -m pip install pytest pytest-mock 'av<10'
57+
python3 -m pip install --progress-bar=off pytest pytest-mock 'av<10'
5858
5959
# Run Tests
6060
python3 -m torch.utils.collect_env
61-
python3 -m pytest --junitxml=test-results/junit.xml -v --durations 20
61+
python3 -m pytest --junitxml=test-results/junit.xml --durations 20

0 commit comments

Comments
 (0)