Skip to content

Fixing the problems with the CLI instructions on the project.toml #148

Fixing the problems with the CLI instructions on the project.toml

Fixing the problems with the CLI instructions on the project.toml #148

Workflow file for this run

# ************************************************************************
# @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