Skip to content

Merge pull request #76 from metno/httpserver #157

Merge pull request #76 from metno/httpserver

Merge pull request #76 from metno/httpserver #157

Workflow file for this run

name: pytest
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
pyTestCov:
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
runs-on: ubuntu-latest
steps:
- name: Python Setup
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Checkout Source
uses: actions/checkout@v2
- name: Install Dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install pytest-timeout
pip install pytest-cov
- name: Run Tests
run: python -m pytest -v --cov=./ --cov-report=xml --timeout=60
- name: Upload to Codecov
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos