Skip to content

plots update

plots update #164

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
pip install cmdstanpy
pip install -r requirements.txt
pip install poetry
pip install -r requirements-test.txt
pip install -r requirements-docs.txt
python setup.py develop
- name: Test and create core models in pytest
run: pytest -vs tests/tests_first/ --cov=karpiu --cov-report term-missing
- name: Test the rest in pytest
run: pytest -vs tests/tests_rest/ --cov=karpiu --cov-report term-missing