Skip to content

Update all Rust dependencies #88

Update all Rust dependencies

Update all Rust dependencies #88

Workflow file for this run

name: Python Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
pip install -e ./python
pip install pytest pytest-xdist
- name: Run Python tests
run: |
cd tests
pytest --adapters adapters/python