Skip to content

Use timezone.utc instead of UTC alias in tests for backward compatibi… #244

Use timezone.utc instead of UTC alias in tests for backward compatibi…

Use timezone.utc instead of UTC alias in tests for backward compatibi… #244

Workflow file for this run

name: fhirpath py
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: 3.9
- python-version: "3.10"
- python-version: "3.11"
env:
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip and pipenv
run: python -m pip install --upgrade pip pipenv
- name: Install dependencies
run: pipenv install --dev
- name: Run tests
run: pipenv run pytest --tb=no
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: PYTHON
fail_ci_if_error: true
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
verbose: true