filter boxes with low score (#177) #247
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: tests-RPI | |
on: | |
push: | |
branches: [main, develop] | |
pull_request: | |
branches: [main, develop] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [self-hosted] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install package | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e . --upgrade | |
pytest: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [self-hosted] | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: pip install -e ".[test]" --upgrade | |
- name: Run unittests | |
run: coverage run -m pytest tests/ |