Skip to content

Commit 534b221

Browse files
committed
disabled token
1 parent 35b8e14 commit 534b221

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
python-version: '3.10'
1515
- name: Install dependencies
1616
run: pip install -r requirements.txt
17-
- name: Run tests and collect coverage
18-
run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }}
17+
# - name: Run tests and collect coverage
18+
# run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }}
1919
- name: Upload coverage to Codecov
2020
uses: codecov/codecov-action@v4
2121
with:
2222
verbose: true
2323
env:
24-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
24+
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

app/test_calculator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from .calculator import Calculator
22

3-
43
def test_add():
54
assert Calculator.add(1, 2) == 3.0
65
assert Calculator.add(1.0, 2.0) == 3.0

0 commit comments

Comments
 (0)