We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74a3049 commit c0c2f2cCopy full SHA for c0c2f2c
4 files changed
.coveragerc
@@ -22,3 +22,4 @@ exclude_lines =
22
raise NotImplementedError
23
if 0:
24
if __name__ == .__main__.:
25
+ if types.TYPE_CHECKING:
.github/workflows/main.yml
@@ -22,6 +22,5 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- pip install tox tox-gh-actions
26
- name: Test with tox
27
run: tox
progressbar/py.typed
tox.ini
@@ -21,6 +21,12 @@ basepython = python3
21
deps = flake8
commands = flake8 {toxinidir}/progressbar {toxinidir}/tests {toxinidir}/examples.py
+[testenv:pyright]
+changedir =
+basepython = python3
+deps = pyright
28
+commands = pyright {toxinidir}/progressbar
29
+
30
[testenv:docs]
31
changedir =
32
basepython = python3
0 commit comments