Skip to content

add scriber_ispred4_scannet_sppider model #199

add scriber_ispred4_scannet_sppider model

add scriber_ispred4_scannet_sppider model #199

Workflow file for this run

name: unittests
on: [pull_request]
jobs:
test:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [ubuntu-latest]
python-version: [3.9]
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2.2.2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt pytest pytest-cov coverage hypothesis
- name: Test
run: |
pytest --cov=./ --cov-report=xml -v
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
flags: unittests
verbose: true