Skip to content

updated version to 0.1.16 #1

updated version to 0.1.16

updated version to 0.1.16 #1

Workflow file for this run

name: End-to-end Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest
- name: Run end-to-end tests
run: |
pytest -s tests/test_end_to_end.py