Skip to content

Update prometheus_server_interceptor.py (#37) #22

Update prometheus_server_interceptor.py (#37)

Update prometheus_server_interceptor.py (#37) #22

Workflow file for this run

on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.6'
- '3.7'
- '3.8'
name: Test in python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: |-
pip install -r requirements.txt
pip install -r test_requirements.txt
- run: |-
coverage run --source=py_grpc_prometheus -m pytest
coverage report -m