Skip to content

np.bool is deprecated #14

np.bool is deprecated

np.bool is deprecated #14

Workflow file for this run

name: integration
# This workflow is triggered on pushes to the repository. Testing!
on: [push]
jobs:
build:
# Job name is test-k2sc
name: test-k2sc
# This job runs on Linux
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
- name: python
uses: actions/setup-python@v1
with:
python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
architecture: 'x64' # (x64 or x86)
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- run:
python setup.py install
name: 'Install k2sc'
- run: pytest tests/unit_tests/*.py
name: 'Run pytest'