Best Python code snippet using localstack_python
test_makecpt.py
Source:test_makecpt.py
...16 Load the points data from the test file.17 """18 return np.loadtxt(POINTS_DATA)19@pytest.fixture(scope="module", name="region")20def fixture_region():21 """22 The data region.23 """24 return [10, 70, -5, 10]25@pytest.fixture(scope="module", name="grid")26def fixture_grid():27 """28 Load the grid data from the sample earth_relief file.29 """30 return load_earth_relief(registration="gridline")31@pytest.mark.mpl_image_compare32def test_makecpt_plot_points(points, region):33 """34 Use static color palette table to change color of points....
test_vizplots.py
Source:test_vizplots.py
...41 dataframe["cycle_number"] == 1, "0111_pt1x0222_pt2", "0333pt3x0111_pt1"42 )43 return dataframe44@pytest.fixture(scope="module", name="region")45def fixture_region():46 """47 Sample grid region.48 """49 region = [-155.5, -151.5, -85.0, -83.5, 117.5, 200]50 return region51@pytest.fixture(scope="module", name="grid")52def fixture_grid(region):53 """54 Sample ice surface elevation grid randomly generated.55 """56 longitude = np.arange(region[0], region[1], 0.5)57 latitude = np.arange(region[2], region[3], 0.5)58 shape = (len(latitude), len(longitude))59 data = np.random.RandomState(seed=42).rand(*shape) + np.random.randint(...
snapshot.py
Source:snapshot.py
...51def fixture_account_id():52 sts_client = _client("sts") # TODO: extract client factory from fixtures plugin53 yield sts_client.get_caller_identity()["Account"]54@pytest.fixture(name="region", scope="session")55def fixture_region():56 sts_client = _client("sts") # TODO: extract client factory from fixtures plugin57 yield sts_client.meta.region_name58@pytest.fixture(name="snapshot", scope="function")59def fixture_snapshot(request: SubRequest, account_id, region):60 update_overwrite = os.environ.get("SNAPSHOT_UPDATE", None) == "1"61 sm = SnapshotSession(62 file_path=os.path.join(63 request.fspath.dirname, f"{request.fspath.purebasename}.snapshot.json"64 ),65 scope_key=request.node.nodeid,66 update=update_overwrite or request.config.option.snapshot_update,67 verify=False if request.config.option.snapshot_skip_all else True,68 )69 sm.add_transformer(RegexTransformer(account_id, "1" * 12), priority=2)...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!