Fix: removed ecrow from sdk temporarily and updated readme. #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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')" |