From c26bd5ef29815610165568434012bd94acb15b42 Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Tue, 15 Dec 2020 17:17:12 -0800 Subject: [PATCH] Add Github Actions regresion testing --- .github/workflows/regression-tests.yml | 33 ++++++++++++++++++++++++++ tox.ini | 1 + 2 files changed, 34 insertions(+) create mode 100644 .github/workflows/regression-tests.yml diff --git a/.github/workflows/regression-tests.yml b/.github/workflows/regression-tests.yml new file mode 100644 index 000000000..a457c3b44 --- /dev/null +++ b/.github/workflows/regression-tests.yml @@ -0,0 +1,33 @@ +name: Regression Tests + +on: [push, pull_request] + +jobs: + build: + name: Python ${{matrix.python-version}} + runs-on: ubuntu-20.04 + + strategy: + matrix: + python-version: [3.9] + group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] + + steps: + - uses: actions/checkout@v1 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + + - name: Install Icarus Verilog + run: | + sudo apt install -y --no-install-recommends iverilog + + - name: Install Python dependencies + run: | + python -m pip install --upgrade pip + pip install tox tox-gh-actions + + - name: Test with tox + run: tox -- --splits 10 --group ${{ matrix.group }} diff --git a/tox.ini b/tox.ini index 8fdfebfdc..69e3b5a0a 100644 --- a/tox.ini +++ b/tox.ini @@ -11,6 +11,7 @@ python = deps = pytest pytest-xdist + pytest-split cocotb cocotb-test cocotbext-axi