2021-03-18 13:46:50 +01:00
|
|
|
name: Test Super Model
|
2021-03-18 13:15:50 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-10-25 19:26:20 +02:00
|
|
|
os: [ubuntu-18.04, ubuntu-20.04, macos-latest]
|
2021-03-18 13:15:50 +01:00
|
|
|
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 }}
|
|
|
|
|
2021-05-19 07:00:33 +02:00
|
|
|
- name: Install XAutoDL from source
|
|
|
|
run: |
|
2022-03-25 02:06:28 +01:00
|
|
|
pip install .
|
2021-05-19 07:00:33 +02:00
|
|
|
|
2021-03-18 13:15:50 +01:00
|
|
|
- name: Test Super Model
|
|
|
|
run: |
|
2021-06-11 06:01:58 +02:00
|
|
|
python -m pip install pytest
|
2021-03-20 15:28:23 +01:00
|
|
|
python -m pip install parameterized
|
2021-05-19 07:13:11 +02:00
|
|
|
python -m pip install torch torchvision
|
|
|
|
python -m pytest ./tests/test_super_*.py
|
2021-03-18 13:15:50 +01:00
|
|
|
shell: bash
|
2021-05-19 10:10:42 +02:00
|
|
|
|
|
|
|
- name: Test TAS (NeurIPS 2019)
|
|
|
|
run: |
|
|
|
|
python -m pytest ./tests/test_tas.py
|
|
|
|
shell: bash
|