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

Gain sel tracker #295

Merged
merged 49 commits into from
Jul 9, 2024
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
711b319
Create gainSel_webmaker.py
rcervinoucm Jul 1, 2024
e9c4e8b
Delete src/osa/scripts/gainSel_webmaker.py
rcervinoucm Jul 3, 2024
ff207d2
Create gainSelWebmaker.py
rcervinoucm Jul 3, 2024
73b3bf9
Create gainsel_webmaker.py
rcervinoucm Jul 3, 2024
d2c31a0
Delete src/osa/scripts/gainSelWebmaker.py
rcervinoucm Jul 3, 2024
14f9c57
Update gainsel_webmaker.py
rcervinoucm Jul 3, 2024
17fd640
Update gainsel_webmaker.py
rcervinoucm Jul 3, 2024
eba84c6
Update gainsel_webmaker.py
rcervinoucm Jul 3, 2024
f3f228f
Update gainsel_webmaker.py
rcervinoucm Jul 3, 2024
6d8988b
Update gainsel_webmaker.py
rcervinoucm Jul 3, 2024
886f9e7
Update gainsel_webmaker.py
rcervinoucm Jul 3, 2024
29a3542
Update gainsel_webmaker.py
rcervinoucm Jul 3, 2024
421c7ed
Update gainsel_webmaker.py
rcervinoucm Jul 3, 2024
f3ae27a
Update gainsel_webmaker.py
rcervinoucm Jul 3, 2024
74b4488
Update sequencer_webmaker.py
rcervinoucm Jul 3, 2024
dc8ff36
Update gainsel_webmaker.py
rcervinoucm Jul 3, 2024
e1e085f
Update gainsel_webmaker.py
rcervinoucm Jul 3, 2024
b21201a
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 4, 2024
a5da4c8
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 4, 2024
9f12973
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 4, 2024
5f45df3
Update gainsel_webmaker.py
rcervinoucm Jul 4, 2024
e92e8ef
Update gainsel_webmaker.py
rcervinoucm Jul 4, 2024
13096ed
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 5, 2024
fa825df
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 5, 2024
afdbba0
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 5, 2024
085dcaf
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 5, 2024
dad866d
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 5, 2024
43ab379
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 5, 2024
596a033
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 5, 2024
ae1f506
Update gainsel_webmaker.py
rcervinoucm Jul 5, 2024
00e82f6
Update gainsel_webmaker.py
rcervinoucm Jul 5, 2024
4b64f2f
Update gainsel_webmaker.py
rcervinoucm Jul 5, 2024
0f93dea
Update gainsel_webmaker.py
rcervinoucm Jul 5, 2024
4590557
Update gainsel_webmaker.py
rcervinoucm Jul 8, 2024
bc8aa4c
Update pyproject.toml
rcervinoucm Jul 8, 2024
e105d11
Create test_gainsel_webmaker.py
rcervinoucm Jul 8, 2024
0df8389
Update sequencer.cfg
rcervinoucm Jul 8, 2024
abf6ba1
Delete src/osa/tests/test_gainsel_webmaker.py
rcervinoucm Jul 8, 2024
399b6b5
Update test_osa_scripts.py
rcervinoucm Jul 8, 2024
85542aa
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 8, 2024
4f19407
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 8, 2024
a9b6f5b
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 8, 2024
025156b
Update src/osa/scripts/gainsel_webmaker.py
rcervinoucm Jul 8, 2024
9c9f816
Update test_osa_scripts.py
rcervinoucm Jul 8, 2024
0e8ff43
Update test_osa_scripts.py
rcervinoucm Jul 9, 2024
e982daf
Update gainsel_webmaker.py
rcervinoucm Jul 9, 2024
3ad9629
Update gainsel_webmaker.py
rcervinoucm Jul 9, 2024
1de1b19
some simplifications and cleanup
morcuended Jul 9, 2024
107d558
remove redundant line
morcuended Jul 9, 2024
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
16 changes: 16 additions & 0 deletions src/osa/tests/test_gainsel_webmaker.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
def test_gain_selection_webmaker(
morcuended marked this conversation as resolved.
Show resolved Hide resolved
run_summary,
merged_run_summary,
drs4_time_calibration_files,
systematic_correction_files,
base_test_dir,
):


output = sp.run(
["gainsel_webmaker", "--test", "-d", "2020-01-17"],
text=True,
stdout=sp.PIPE,
stderr=sp.PIPE,
)
assert output.returncode != 0
Loading