We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee23290 commit b085a4cCopy full SHA for b085a4c
.github/workflows/ci-build.yml
@@ -41,5 +41,8 @@ jobs:
41
run: |
42
python_version=`python -V`
43
if [ ${python_version:7:3} == "3.9" ]; then
44
- codecov -e ${python_version:7}
+ # python setup.py validate generates the coverage file
45
+ curl -Os https://uploader.codecov.io/latest/linux/codecov
46
+ chmod +x codecov
47
+ ./codecov -t ${CODECOV_TOKEN}
48
fi
setup.py
@@ -25,7 +25,6 @@
25
"itsdangerous==1.1.0", # TODO: Flask-Sockets is not yet compatible with Flask 2.x
26
"Jinja2==3.0.3", # https://github.com/pallets/flask/issues/4494
27
"pytest-cov>=2,<3",
28
- "codecov>=2,<3",
29
"flake8>=5,<6",
30
"black==22.8.0",
31
"click==8.0.4", # black is affected by https://github.com/pallets/click/issues/2225
0 commit comments