autodl-projects/.github/workflows/test.yml

36 lines
773 B
YAML
Raw Normal View History

2021-03-17 13:48:43 +01:00
name: Run Python Tests for Spaces
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os: [ubuntu-16.04, ubuntu-18.04, ubuntu-20.04, macos-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Test Search Space
2021-03-17 13:51:33 +01:00
run: |
2021-03-17 13:48:43 +01:00
python -m pip install pytest
echo $PWD
2021-03-17 13:53:17 +01:00
echo "Show what we have here:"
2021-03-17 13:51:33 +01:00
ls
2021-03-17 13:48:43 +01:00
python --version
2021-03-17 13:53:17 +01:00
python -m pytest ./tests --durations=0
2021-03-17 13:51:33 +01:00
shell: bash