Skip to content

Commit 2d0c41f

Browse files
Merge branch 'main' into th/test-tokenless2
2 parents f940b78 + 10eaa1c commit 2d0c41f

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/ci.yml

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ jobs:
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v4
13-
with:
14-
fetch-depth: 0
1513
- name: Set up Python 3.10
1614
uses: actions/setup-python@v4
1715
with:

app/calculator.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ def divide(x, y):
1313
if y == 0:
1414
return 'Cannot divide by 0'
1515
return x * 1.0 / y
16+

requirements.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
attrs==23.2.0
2-
coverage==7.5.4
1+
attrs==24.2.0
2+
coverage==7.6.8
33
iniconfig==2.0.0
4-
packaging==24.1
4+
packaging==24.2
55
pluggy==1.5.0
66
py==1.11.0
7-
pyparsing==3.1.2
8-
pytest==8.2.2
9-
pytest-cov==5.0.0
10-
tomli==2.0.1
7+
pyparsing==3.2.0
8+
pytest==8.3.4
9+
pytest-cov==6.0.0
10+
tomli==2.2.1

0 commit comments

Comments
 (0)