Skip to content

Commit

Permalink
more test data; add pytest flag for plot comparisons
Browse files Browse the repository at this point in the history
  • Loading branch information
wtbarnes committed May 12, 2024
1 parent 352de9f commit bf4b527
Show file tree
Hide file tree
Showing 4 changed files with 5,019 additions and 4 deletions.
8 changes: 8 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,16 @@ def pytest_addoption(parser):
parser.addoption(
"--ebtel_idl_path", action="store", default=None, help="Path to EBTEL IDL code"
)
parser.addoption(
'--plot_idl_comparisons', action='store_true', default=False, help='Plot IDL results against ebtel++'
)


@pytest.fixture
def ebtel_idl_path(request):
return request.config.getoption("--ebtel_idl_path")


@pytest.fixture
def plot_idl_comparisons(request):
return request.config.getoption("--plot_idl_comparisons")
Loading

0 comments on commit bf4b527

Please sign in to comment.