Skip to content

Aliexpress.com Test #23

Aliexpress.com Test

Aliexpress.com Test #23

Workflow file for this run

name: Aliexpress.com Test
on:
workflow_dispatch:
schedule:
- cron: '0 12 * * MON'
env:
PROJECT_DIR: aliexpress-scraper
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
test: [test_search_scraping, test_product_scraping, test_review_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 }}