Skip to content

Commit 3c9381b

Browse files
committed
release: v0.7.2
1 parent 60f59e4 commit 3c9381b

File tree

2 files changed

+1
-22
lines changed

2 files changed

+1
-22
lines changed

examples/pytest/calculator_test.py

-21
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,4 @@
1-
from pytest import raises
2-
3-
41
def test_addition(al, navigate):
52
navigate("https://seleniumbase.io/apps/calculator")
63
al.do("2 + 2 =")
74
assert al.get("calculator value") == 4
8-
9-
10-
def test_subtraction(al, navigate):
11-
navigate("https://seleniumbase.io/apps/calculator")
12-
al.do("5 - 3 =")
13-
assert al.get("calculator value") == 2
14-
15-
16-
def test_multiplication(al, navigate):
17-
navigate("https://seleniumbase.io/apps/calculator")
18-
al.do("3 * 4 =")
19-
assert al.get("calculator value") == 12
20-
21-
22-
def test_division(al, navigate):
23-
navigate("https://seleniumbase.io/apps/calculator")
24-
al.do("8 / 2 =")
25-
assert al.get("calculator value") == 4

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ license = "MIT"
2626
name = "alumnium"
2727
readme = "README.md"
2828
repository = "https://github.com/alumnium-hq/alumnium"
29-
version = "0.7.1"
29+
version = "0.7.2"
3030

3131
[tool.poetry.dependencies]
3232
langchain = "^0.3"

0 commit comments

Comments
 (0)