mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-12 23:04:03 +02:00
* Autogenerate the documentation and strings * Line limit * Split * Happy pre-commit * Split up workflows * Generate table function * raise * Add gen script * chore(docs): update TOC * Add gen script * path * Run - name: Install Home Assistant * chore(docs): update TOC * add copyright * Fix branch name * Run on PRs * dev * remove steps * use matrix * Run script * chore(docs): update TOC * Try fixing CI * fix * test * refactor * chore(docs): update TOC * fix * update * use v3 * rename * Fix input * fix pytest * fix path * paths * Change to github.head_ref * More backticks * Add extra text * chore(docs): update TOC * backticks * Update README.md --------- Co-authored-by: basnijholt <basnijholt@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
57 lines
2 KiB
YAML
57 lines
2 KiB
YAML
name: pytest
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
|
|
jobs:
|
|
pytest:
|
|
name: Run pytest
|
|
runs-on: ubuntu-20.04
|
|
timeout-minutes: 60
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.10"]
|
|
steps:
|
|
- name: Check out code from GitHub
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Home Assistant
|
|
uses: ./.github/workflows/install_dependencies
|
|
with:
|
|
python_version: ${{ matrix.python-version }}
|
|
|
|
- name: Click here for troubleshooting steps if tests break again.
|
|
run: |
|
|
echo "::notice::### If tests fail, try these debug steps: ###"
|
|
echo "::notice::### 1. Replace '-qq' from .github/workflow/pytest.yaml. with '-v' for extra verbosity. ###"
|
|
echo "::notice::### 2. Push or run action again. ###"
|
|
echo "::notice::### 3. Check for any log messages in github actions resembling the following using CTRL+F ###
|
|
echo "::notice::### 4. ERROR:homeassistant.setup:Setup failed for 'component': Unable to import component: No module named ''module'' ###"
|
|
echo "::notice::### 5. add 'component'.'module' (without the '') from the above log into the 'required' list inside of 'test_dependencies.py' ###"
|
|
echo "::notice::### 6. Try again! If more issues persist they should be easily solvable by reading the verbose logs now. ###"
|
|
- name: Run pytest
|
|
timeout-minutes: 60
|
|
run: |
|
|
cd core
|
|
|
|
# Link homeassitant.components.adaptive_lighting
|
|
cd homeassistant/components
|
|
ln -fs ../../../custom_components/adaptive_lighting adaptive_lighting
|
|
cd -
|
|
|
|
# Link adaptive_lighting tests
|
|
cd tests/components/
|
|
ln -fs ../../../tests adaptive_lighting
|
|
cd -
|
|
|
|
python3 -X dev -m pytest \
|
|
-qq \
|
|
--timeout=9 \
|
|
--durations=10 \
|
|
--cov="homeassistant" \
|
|
--cov-report=xml \
|
|
-o console_output_style=count \
|
|
-p no:sugar \
|
|
tests/components/adaptive_lighting
|