Skip to content

fix: consider vat not applied if delivering to US #27

fix: consider vat not applied if delivering to US

fix: consider vat not applied if delivering to US #27

Workflow file for this run

name: Tests
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
working-directory: ./src
- name: Install connector
run: |
pip install .
working-directory: ./src
- name: Test with pytest
run: |
pip install pytest
pytest