Skip to content

Bump certifi from 2021.5.30 to 2023.7.22 in /scheduler #1734

Bump certifi from 2021.5.30 to 2023.7.22 in /scheduler

Bump certifi from 2021.5.30 to 2023.7.22 in /scheduler #1734

name: CI (pip)
on: [push]
jobs:
build:
strategy:
matrix:
python-version: [3.7]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python web_install.py
- name: Test with pytest
run: |
pip install coverage
pip install pytest
pip install pyee==9
python -m coverage run -m pytest
python -m coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
verbose: true
files: ./coverage.xml