You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
889 B
34 lines
889 B
name: Python tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
test:
|
|
name: Run tests on ${{ matrix.os }} with Python ${{ matrix.python }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macOS-latest]
|
|
python: ['3.8', '3.7']
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python ${{ matrix.python }}
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install pytest pytest-timeout
|
|
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
|
pip install scipy
|
|
pip install git+https://github.com/mapillary/inplace_abn.git@v1.0.11
|
|
- name: Run tests
|
|
run: |
|
|
pytest -vv --durations=0 ./tests
|