np.in1d
to np.isin
as the former will be deprecated
#280
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: Test on Ubuntu | |
on: | |
pull_request: | |
branches: [main] | |
types: [synchronize, opened, reopened] | |
workflow_dispatch: | |
schedule: | |
- cron: "0 12 * * *" # Daily at noon UTC | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install package | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[test] | |
- name: Pytest | |
run: | | |
pytest --cov=probeinterface --cov-report xml:./coverage.xml | |
- uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
file: ./coverage.xml |