Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ dependencies = [
"chaco==5.1.0",
"click==8.1.3",
"enable==5.3.1",
"numpy==1.23.3",
# "numpy==1.23.3",
"intel-numpy==1.21.4",
"scikit-rf==0.24.1",
"scipy==1.9.2",
"traits==6.4.1",
Expand Down
6 changes: 3 additions & 3 deletions src/pybert/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ def cli(ctx, config_file, results):
def sim(config_file, results):
"""Run a simulation without opening the GUI.

Will load the CONFIG_FILE from the given filepath, run the simulation and
then save the results into a file with the same name but a different
extension as the configuration file.
Will load the CONFIG_FILE from the given filepath, run the
simulation and then save the results into a file with the same name
but a different extension as the configuration file.
"""
pybert = PyBERT(run_simulation=False, gui=False)
pybert.load_configuration(config_file)
Expand Down
1 change: 0 additions & 1 deletion tests/test_command_line.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Unit test coverage to make sure that the added cli commands function like the gui."""
import logging

from click.testing import CliRunner

Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38, py39, py310, pylint, format, flake8, docs
envlist = py38, py39, pylint, format, flake8, docs
skip_missing_interpreters = true
isolated_build = true

Expand All @@ -9,7 +9,7 @@ deps =
pytest-xdist
pytest-cov
conda_deps =
numpy==1.23.3 # Version number required! Conda ignores `pyproject.toml`.
# numpy==1.23.3 # Version number required! Conda ignores `pyproject.toml`.
conda_channels =
defaults
conda-forge
Expand Down