Skip to content

Commit

Permalink
remove codecov (#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuyukimakoto authored Feb 23, 2024
1 parent 45b831c commit 465177d
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 20 deletions.
15 changes: 1 addition & 14 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v1
Expand All @@ -22,16 +22,3 @@ jobs:
python -m pip install -r requirements/requirements_dev.txt
- name: flake8
run: flake8 biisan tests
- name: Generate coverage report
if: success()
run: |
pip install pytest pytest-cov
pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
if: success()
uses: codecov/[email protected]
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
docutils==0.19
Jinja2==3.1.2
MarkupSafe==2.1.1
MarkupSafe==2.1.2
glueplate==1.2.0
inquirer==2.10.0
css-html-js-minify==2.5.5
Expand Down
3 changes: 0 additions & 3 deletions requirements/requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
-r requirements.txt
pytest-cov==4.0.0
tox==3.27.0
tox-travis==0.13
codecov==2.1.12
coverage==6.5.0
flake8==6.0.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Documentation',
],
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,py39,py310,py311,flake8,
envlist = py38,py39,py310,py311,py312,flake8,
skipsdist = true

[testenv]
Expand Down

0 comments on commit 465177d

Please sign in to comment.