Skip to content

Fix: removed ecrow from sdk temporarily and updated readme. #3

Fix: removed ecrow from sdk temporarily and updated readme.

Fix: removed ecrow from sdk temporarily and updated readme. #3

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: |
pytest -q || true
- name: Run mock smoke scripts
run: |
python -c "import os,runpy; os.environ['ZENDFI_RUN_MOCK']='1'; runpy.run_path('tests/test_customers_unit.py')"
python -c "import os,runpy; os.environ['ZENDFI_RUN_MOCK']='1'; runpy.run_path('tests/test_payments_splits.py')"
python -c "import os,runpy; os.environ['ZENDFI_RUN_MOCK']='1'; runpy.run_path('tests/test_invoices_unit.py')"