57 lines
1.3 KiB
YAML
57 lines
1.3 KiB
YAML
name: Test Suite
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python: [3.6, 3.7, 3.8, 3.9]
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install tox
|
|
- name: Run lint
|
|
run: tox -vve lint
|
|
unit-test:
|
|
name: Unit Tests
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python: [3.6, 3.7, 3.8, 3.9]
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install tox
|
|
- name: Run test
|
|
run: tox -vve unit
|
|
integration-test:
|
|
name: Integration test with VMWare
|
|
runs-on: self-hosted
|
|
timeout-minutes: 360
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install tox
|
|
- name: Run test
|
|
run: tox -e integration
|