Skip to content

Commit

Permalink
CI: Log stderr as well for nightly builds
Browse files Browse the repository at this point in the history
  • Loading branch information
dopplershift committed Jun 21, 2021
1 parent 5a24a28 commit 1ff72a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nightly-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
run: |
set -o pipefail
export TEST_DATA_DIR=$GITHUB_WORKSPACE/staticdata
python -m pytest --mpl -W error::metpy.deprecation.MetpyDeprecationWarning tests/ | tee tests-${{ matrix.python-version }}.log || (
python -m pytest --mpl -W error::metpy.deprecation.MetpyDeprecationWarning tests/ |& tee tests-${{ matrix.python-version }}.log || (
echo '::set-output name=LOG_AVAILABLE::true' && false
)
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
set -o pipefail
export TEST_DATA_DIR=$GITHUB_WORKSPACE/staticdata
pushd docs
make overridecheck html O=-W | tee build-${{ matrix.python-version }}.log || (
make overridecheck html O=-W |& tee build-${{ matrix.python-version }}.log || (
echo '::set-output name=LOG_AVAILABLE::true' && false
)
popd
Expand Down Expand Up @@ -265,4 +265,4 @@ jobs:
params.issue_number = existing[0].number;
console.log(`Updating existing issue: ${params.issue_number}`)
github.issues.update(params)
}
}

0 comments on commit 1ff72a2

Please sign in to comment.