Skip to content

chore: cleanup profiling stuff #99

chore: cleanup profiling stuff

chore: cleanup profiling stuff #99

Workflow file for this run

name: Push Events
on: [push, pull_request]
jobs:
test:
name: Setup and Test
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install libkrb5 for Kerberos on Linux
# if: contains(matrix.os, 'ubuntu')
run: |
sudo apt install -y libkrb5-dev
pip install requests-kerberos
- name: Checkout code
uses: actions/checkout@v4
with:
show-progress: false
- name: Install module
run: pip install .[tests,nopro]
- name: Test with pytest
run: pytest
- name: Report coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./cov.xml
verbose: true