fix minor bug and format and upgrade to v0.0.2-beta #178
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |