Skip to content

Commit

Permalink
Add PEP 484 annotation stubs. See pygobject#99
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Feb 25, 2018
1 parent 4ad2228 commit bbf02f4
Show file tree
Hide file tree
Showing 6 changed files with 804 additions and 0 deletions.
1 change: 1 addition & 0 deletions .appveyor/msys2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ pacman --noconfirm -Suy
pacman --noconfirm -S --needed mingw-w64-$MSYS2_ARCH-cairo \
mingw-w64-$MSYS2_ARCH-$PYTHON mingw-w64-$MSYS2_ARCH-$PYTHON-pip
$PYTHON -m pip install pytest coverage codecov hypothesis
$PYTHON -m pip install mypy || true

export CFLAGS="-std=c90 -Wall -Wno-long-long -Werror -coverage"
$PYTHON -m coverage run --branch setup.py test
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ dist
.hypothesis
*.pyd
*.dll
.mypy_cache
.pytest_cache
.idea

# image files
*.pdf
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then source ../venv/bin/activate; fi
- python -m pip install --upgrade setuptools
- python -m pip install --upgrade pytest flake8 sphinx sphinx_rtd_theme coverage codecov hypothesis
- python -m pip install --upgrade mypy || true
- if [[ "$TRAVIS_PYTHON_VERSION" != "3.3" ]] && [[ "${TRAVIS_PYTHON_VERSION:0:4}" != "pypy" ]]; then python -m pip install --upgrade pygame; fi

script:
Expand Down
Loading

0 comments on commit bbf02f4

Please sign in to comment.