This file contains hidden or 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
| <style id="jsbin-css"> | |
| * { | |
| border: 1px solid black; | |
| } | |
| div { | |
| background: red; | |
| margin: 30px; | |
| } | |
| section { | |
| margin: 20px; |
This file contains hidden or 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
| import pandas as pd | |
| from minisim import Infiltration, Inhabitant, Zone, Weather | |
| import pytest | |
| # using an instance to pass global-like variables among tests | |
| class Vars: pass | |
| @pytest.fixture |