-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding a draft of a smoke test; fix var name in notebook
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
""" regression tests asserting on values from the plots """ | ||
|
||
from pathlib import Path | ||
|
||
import pytest | ||
|
||
from PySDM_examples.utils import notebook_vars | ||
from PySDM_examples import deJong_Azimi | ||
|
||
from PySDM.physics import si | ||
|
||
PLOT = False | ||
|
||
|
||
@pytest.fixture(scope="session", name="variables") | ||
def variables_fixture(): | ||
return notebook_vars( | ||
file=Path(deJong_Azimi.__file__).parent / "box.ipynb", plot=PLOT | ||
) | ||
|
||
|
||
def test_settings_a(variables): | ||
pass | ||
|
||
|
||
def test_settings_b(variables): | ||
pass | ||
|
||
|
||
def test_settings_c(variables): | ||
pass |