Skip to content

PPPSYS-44518 Converted int values like gt_ms to strings #42

PPPSYS-44518 Converted int values like gt_ms to strings

PPPSYS-44518 Converted int values like gt_ms to strings #42

Workflow file for this run

name: Unit tests
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
name: Tests (Python ${{ matrix.python-version }})
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Pytest
run: |
pip install --upgrade pip
pip install pytest
python --version ; pip --version ; pytest --version
shell: bash
- name: Run Tests
run: |
cd tests
./run_tests.sh
shell: bash
timeout-minutes: 30