xautodl/.github/workflows/basic_test.yml

68 lines
2.1 KiB
YAML
Raw Normal View History

2021-03-18 13:46:50 +01:00
name: Test Spaces
2021-03-17 13:48:43 +01:00
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 }}
2021-03-18 08:04:14 +01:00
- name: Lint with Black
run: |
python -m pip install black
python --version
python -m black --version
echo $PWD ; ls
2021-03-18 09:02:55 +01:00
python -m black ./exps -l 88 --check --diff --verbose
2021-03-18 08:04:14 +01:00
python -m black ./tests -l 88 --check --diff --verbose
2021-05-19 07:00:33 +02:00
python -m black ./xautodl/xlayers -l 88 --check --diff --verbose
python -m black ./xautodl/spaces -l 88 --check --diff --verbose
python -m black ./xautodl/trade_models -l 88 --check --diff --verbose
python -m black ./xautodl/procedures -l 88 --check --diff --verbose
python -m black ./xautodl/config_utils -l 88 --check --diff --verbose
python -m black ./xautodl/log_utils -l 88 --check --diff --verbose
- name: Install XAutoDL from source
run: |
python setup.py install
2021-03-18 08:04:14 +01:00
2021-03-17 13:48:43 +01:00
- name: Test Search Space
2021-03-17 13:51:33 +01:00
run: |
2021-03-18 08:06:24 +01:00
python -m pip install pytest numpy
2021-05-19 08:10:01 +02:00
python -m pip install torch torchvision
2021-03-20 15:28:23 +01:00
python -m pip install parameterized
2021-03-17 13:48:43 +01:00
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-05-19 08:10:01 +02:00
python -m pytest ./tests/test_import.py -s
2021-03-18 13:15:50 +01:00
python -m pytest ./tests/test_basic_space.py -s
2021-04-22 13:12:21 +02:00
shell: bash
- name: Test Synthetic Data
run: |
python -m pip install pytest numpy
python -m pip install parameterized
2021-04-22 14:31:20 +02:00
python -m pip install torch torchvision
2021-04-22 13:12:21 +02:00
python --version
2021-04-26 14:16:38 +02:00
python -m pytest ./tests/test_math*.py -s
2021-04-22 17:08:43 +02:00
python -m pytest ./tests/test_synthetic*.py -s
2021-03-17 13:51:33 +01:00
shell: bash