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 c63d5df commit da2bf71Copy full SHA for da2bf71
azure-pipelines.yml
@@ -25,10 +25,11 @@ steps:
25
CFLAGS="-std=c++11" pip install pyicu
26
pip install -e './python[test]'
27
pip install -r ./docs/requirements.txt
28
+ pip install pytest-azurepipelines
29
displayName: 'Install dependencies'
30
31
- script: |
- pip install pytest-azurepipelines
32
+ (cd ./python && mypy -p bistring)
33
pytest
34
make -C docs doctest
35
displayName: 'pytest'
python/setup.py
@@ -25,6 +25,7 @@
],
extras_require={
'test': [
+ 'mypy',
'pytest',
'regex',
0 commit comments