Skip to content

update httpx requirement from >=0.25,<0.28 to >=0.25,<0.29 #215

update httpx requirement from >=0.25,<0.28 to >=0.25,<0.29

update httpx requirement from >=0.25,<0.28 to >=0.25,<0.29 #215

Workflow file for this run

name: codecov
on:
push:
branches: [main]
pull_request:
jobs:
code_coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: abatilo/actions-poetry@v4.0.0
- run: poetry install --extras all
- run: poetry run pytest --cov=netsuite --cov-report=xml --cov-report=term
- uses: codecov/codecov-action@v5
with:
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}