Skip to content

Expecting seconds to be passed in - API returns millis. #361

Expecting seconds to be passed in - API returns millis.

Expecting seconds to be passed in - API returns millis. #361

Workflow file for this run

name: Unit Tests
on: [ push ]
jobs:
unit_tests:
name: Unit Tests
runs-on: ${{matrix.os}}
strategy:
matrix:
python-version: [ "3.12" ]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.test.txt
- name: Run unit tests
run: |
pytest