Fixes on the testbench #174
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ************************************************************************ | |
# @author: Andreas Kaeberlein | |
# @copyright: Copyright 2021 | |
# @credits: AKAE | |
# | |
# @license: GPLv3 | |
# @maintainer: Andreas Kaeberlein | |
# @email: andreas.kaeberlein@web.de | |
# | |
# @file: unittest.yml | |
# @date: 2021-01-09 | |
# | |
# @brief: runs unit test | |
# | |
# ************************************************************************ | |
name: Unittest | |
on: [push] | |
jobs: | |
Unittest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax. | |
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install numpy | |
- name: Test sweep_iterators.py | |
run: | | |
python ./tests/unittest/sweep_iterators/sweep_iterators_unittest.py | |
- name: Test LTSpice_RawRead | |
run: | | |
python ./tests/unittest/test_pyltspice.py |