feat: add mexico_nuevo_leon #1003
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
name: CI (Non-Linux) | |
on: [push, pull_request] | |
jobs: | |
build: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: pip | |
cache-dependency-path: '**/requirements*.txt' | |
- name: Install postgresql (macOS) | |
if: matrix.os == 'macos-latest' | |
run: brew install postgresql | |
- run: pip install -r requirements_dev.txt | |
- env: | |
CI_SKIP: true | |
run: coverage run --source=kingfisher_scrapy -m pytest -W error -rs | |
- run: python test_delayed_request_middleware.py |