Skip to content

Fix holidays version #29

Fix holidays version

Fix holidays version #29

Workflow file for this run

name: Tests
on: push
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install holidays homeassistant pytest pytest-asyncio pytest-mock
- name: Run test suite
run: pytest --asyncio-mode=strict