Skip to content

SN1-224: Adding random website dataset (#359) #1359

SN1-224: Adding random website dataset (#359)

SN1-224: Adding random website dataset (#359) #1359

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Prompting CI/CD
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
bash install.sh
poetry install --all-extras
poetry run pip uninstall -y uvloop
- name: Debug Environment
run: |
poetry run python -V
poetry run which python
poetry env info
poetry run pip list
- name: Test with pytest
run: |
# run tests in tests/ dir and only fail if there are failures or errors
poetry run pytest tests/ --verbose --failed-first --exitfirst --disable-warnings