Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix test cbrs measure #119

Merged
merged 2 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion scos_actions/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "10.0.0"
__version__ = "10.0.1"
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
nasctn_sea_data_product:
name: test_SEA_CBRS_Measure_Baseline
rf_path: antenna
calibration_adjust: False
# IIR filter settings
iir_gpass_dB: 0.1 # Max passband ripple below unity gain
iir_gstop_dB: 40 # Minimum stopband attenuation
Expand Down
2 changes: 1 addition & 1 deletion scos_actions/hardware/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from typing import Any, Dict, List, Optional

import numpy as np
from numpy.typing import ArrayLike
from its_preselector.preselector import Preselector
from its_preselector.web_relay import WebRelay
from numpy.typing import ArrayLike

from scos_actions.calibration.differential_calibration import DifferentialCalibration
from scos_actions.calibration.sensor_calibration import SensorCalibration
Expand Down
1 change: 0 additions & 1 deletion scos_actions/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
__cmd = path.split(sys.argv[0])[-1]
RUNNING_TESTS = env.bool("RUNNING_TESTS", "test" in __cmd)
logger.debug(f"scos-actions: RUNNING_TESTS:{RUNNING_TESTS}")
logger.debug(f"scos-actions: RUNNING_TESTS:{RUNNING_TESTS}")
FQDN = env("FQDN", None)
logger.debug(f"scos-actions: FQDN:{FQDN}")

Expand Down
Loading