Skip to content

Booking.com Test

Booking.com Test #10

Workflow file for this run

name: Booking.com Test
on:
workflow_dispatch:
schedule:
- cron: '0 2 * * TUE'
env:
PROJECT_DIR: bookingcom-scraper
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
test: [test_search_scraping, test_hotel_scraping]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Cache Poetry virtual environment
uses: actions/cache@v2
id: cache
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('**/${{ env.PROJECT_DIR }}/pyproject.toml') }}
restore-keys: |
${{ runner.os }}-poetry-
- name: Install dependencies
run: |
cd ${{ env.PROJECT_DIR }}
poetry install
- name: Run test
env:
SCRAPFLY_KEY: ${{ secrets.SCRAPFLY_KEY }}
run: |
cd ${{ env.PROJECT_DIR }}
poetry run pytest test.py -k ${{ matrix.test }}