-
Notifications
You must be signed in to change notification settings - Fork 59
44 lines (39 loc) · 1.21 KB
/
unittest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# ************************************************************************
# @author: Andreas Kaeberlein
# @copyright: Copyright 2021
# @credits: AKAE
#
# @license: GPLv3
# @maintainer: Nuno Brum
# @email: me@nunobrum.com
#
# @file: unittest.yml
# @date: 2023-08-09
#
# @brief: runs unit test
#
# ************************************************************************
name: Unittest
on: [push]
jobs:
Unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.8' # 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 ./unittests/sweep_iterators_unittest.py
- name: Test LTSpice_RawRead
run: |
python ./unittests/test_pyltspice.py
- name: Test Asc_Editor
run: |
python ./unittests/test_asc_editor.py