Skip to content

Improved logging performance by writing directly to CSV file, not to … #10

Improved logging performance by writing directly to CSV file, not to …

Improved logging performance by writing directly to CSV file, not to … #10

Workflow file for this run

name: Run pytest
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
cache-dependency-path: |
requirements/api.txt
requirements/dev.txt
- name: Install dependencies
run: |
pip install -r requirements/api.txt
pip install -r requirements/dev.txt
- name: Run tests
run: python -m pytest --cov=aintelope tests