Skip to content

Update setup.py

Update setup.py #295

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.8.17
- uses: s-weigand/setup-conda@v1
with:
activate-conda: true
python-version: 3.8
- run: conda --version
- run: which python
- name: Run installation.
run: |
conda install -y scipy
pip install codecov
pip install pytest
python setup.py install
- name: Install main package
run: |
pip install -e .[test]
- name: Run test-suite
run: |
python -m pytest
- name: Generate coverage report
if: success()
run: |
pip install coverage
coverage run -m pytest
- name: Upload coverage report to codecov
uses: codecov/codecov-action@v1
if: success()
with:
file: coverage.xml