-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create pytest output artifact [ci] (#98106)
- Loading branch information
Showing
2 changed files
with
38 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -734,9 +734,12 @@ jobs: | |
- name: Run pytest (fully) | ||
if: needs.info.outputs.test_full_suite == 'true' | ||
timeout-minutes: 60 | ||
id: pytest-full | ||
run: | | ||
. venv/bin/activate | ||
python --version | ||
set -o pipefail | ||
python3 -X dev -m pytest \ | ||
-qq \ | ||
--timeout=9 \ | ||
|
@@ -749,14 +752,17 @@ jobs: | |
--cov-report=xml \ | ||
-o console_output_style=count \ | ||
-p no:sugar \ | ||
tests | ||
tests \ | ||
2>&1 | tee pytest-${{ matrix.python-version }}-${{ matrix.group }}.txt | ||
- name: Run pytest (partially) | ||
if: needs.info.outputs.test_full_suite == 'false' | ||
timeout-minutes: 10 | ||
id: pytest-partial | ||
shell: bash | ||
run: | | ||
. venv/bin/activate | ||
python --version | ||
set -o pipefail | ||
if [[ ! -f "tests/components/${{ matrix.group }}/__init__.py" ]]; then | ||
echo "::error:: missing file tests/components/${{ matrix.group }}/__init__.py" | ||
|
@@ -774,7 +780,14 @@ jobs: | |
--durations=0 \ | ||
--durations-min=1 \ | ||
-p no:sugar \ | ||
tests/components/${{ matrix.group }} | ||
tests/components/${{ matrix.group }} \ | ||
2>&1 | tee pytest-${{ matrix.python-version }}-${{ matrix.group }}.txt | ||
- name: Upload pytest output | ||
if: success() || failure() && (steps.pytest-full.conclusion == 'failure' || steps.pytest-partial.conclusion == 'failure') | ||
uses: actions/[email protected] | ||
with: | ||
name: pytest-${{ github.run_number }} | ||
path: pytest-*.txt | ||
- name: Upload coverage artifact | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -862,10 +875,13 @@ jobs: | |
python3 -m script.translations develop --all | ||
- name: Run pytest (partially) | ||
timeout-minutes: 20 | ||
id: pytest-partial | ||
shell: bash | ||
run: | | ||
. venv/bin/activate | ||
python --version | ||
set -o pipefail | ||
mariadb=$(echo "${{ matrix.mariadb-group }}" | sed "s/:/-/g") | ||
python3 -X dev -m pytest \ | ||
-qq \ | ||
|
@@ -881,7 +897,14 @@ jobs: | |
tests/components/history \ | ||
tests/components/logbook \ | ||
tests/components/recorder \ | ||
tests/components/sensor | ||
tests/components/sensor \ | ||
2>&1 | tee pytest-${{ matrix.python-version }}-${mariadb}.txt | ||
- name: Upload pytest output | ||
if: success() || failure() && steps.pytest-partial.conclusion == 'failure' | ||
uses: actions/[email protected] | ||
with: | ||
name: pytest-${{ github.run_number }} | ||
path: pytest-*.txt | ||
- name: Upload coverage artifact | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -969,10 +992,13 @@ jobs: | |
python3 -m script.translations develop --all | ||
- name: Run pytest (partially) | ||
timeout-minutes: 20 | ||
id: pytest-partial | ||
shell: bash | ||
run: | | ||
. venv/bin/activate | ||
python --version | ||
set -o pipefail | ||
postgresql=$(echo "${{ matrix.postgresql-group }}" | sed "s/:/-/g") | ||
python3 -X dev -m pytest \ | ||
-qq \ | ||
|
@@ -989,7 +1015,14 @@ jobs: | |
tests/components/history \ | ||
tests/components/logbook \ | ||
tests/components/recorder \ | ||
tests/components/sensor | ||
tests/components/sensor \ | ||
2>&1 | tee pytest-${{ matrix.python-version }}-${postgresql}.txt | ||
- name: Upload pytest output | ||
if: success() || failure() && steps.pytest-partial.conclusion == 'failure' | ||
uses: actions/[email protected] | ||
with: | ||
name: pytest-${{ github.run_number }} | ||
path: pytest-*.txt | ||
- name: Upload coverage artifact | ||
uses: actions/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,6 +67,7 @@ htmlcov/ | |
test-reports/ | ||
test-results.xml | ||
test-output.xml | ||
pytest-*.txt | ||
|
||
# Translations | ||
*.mo | ||
|