Skip to content

Update dependency matplotlib to v3.7.3 #1523

Update dependency matplotlib to v3.7.3

Update dependency matplotlib to v3.7.3 #1523

Workflow file for this run

name: Unit tests
on: [push, pull_request]
env:
CODECHECK_PY_VER: 3.9
jobs:
unit-tests:
name: Pytest
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up python-${{ env.CODECHECK_PY_VER }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.CODECHECK_PY_VER }}
- name: Tests
run: |
pip3 install -r requirements.txt -r tests/requirements.txt && \
PYTHONPATH=. python3 -m birdseye.baseline --help \
PYTHONPATH=. python3 -m birdseye.dqn --help && \
PYTHONPATH=. python3 -m birdseye.mcts --help && \
PYTHONPATH=. python3 ./run_birdseye.py -h && \
PYTHONPATH=. pytest -v -vv --cov-report term-missing --cov=. --cov=birdseye -c .coveragerc && \
PATH=/home/runner/.local/bin:$PATH coverage report && \
PATH=/home/runner/.local/bin:$PATH coverage xml
- name: Upload coverage to Codecov
uses: codecov/[email protected]
if: github.repository == 'iqtlabs/birdseye'