Skip to content

fix: warning messages for invalid data in test_dataset.py #1196

fix: warning messages for invalid data in test_dataset.py

fix: warning messages for invalid data in test_dataset.py #1196

Workflow file for this run

name: build
on:
push:
paths-ignore:
# specific folder locations
- ".vscode/**"
- "docs/**"
# filetypes
- "**.md"
- "**.rst"
- "**.ipynb"
- "**.cff"
- "**.png"
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths-ignore:
# specific folder locations
- ".vscode/**"
- "docs/**"
# filetypes
- "**.md"
- "**.rst"
- "**.ipynb"
- "**.cff"
- "**.png"
jobs:
build:
if: github.event.pull_request.draft == false
name: Build for (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest']
python-version: ['3.9', '3.10']
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-python-and-package
- name: Run unit tests
env:
CONDA_PREFIX: /usr/share/miniconda
run: |
pytest -v
- name: Verify that we can build the package
run: python3 setup.py sdist bdist_wheel