Skip to content

Setup 0.3.0.dev3

Setup 0.3.0.dev3 #74

Workflow file for this run

name: Testing
on:
push:
branches:
- develop
- main
jobs:
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install Dependencies
run: |
pip install numpy Cython
pip install -r tests/requirements.txt
pip install pytest
- name: Install pymoode (DEBUG)
run: |
python setup.py install
- name: Install pymoode
run: |
pip install .
rm -rf pymoode
- name: Check Compilation
run: |
python -c "from pymoode.survival.rank_and_crowding.metrics import IS_COMPILED;print('Compiled Extensions: ', IS_COMPILED)"
- name: Run Tests
run: |
pytest -v --maxfail 1 --no-header -m "not long"