mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 22:40:09 +01:00
travis experiment #8
This commit is contained in:
parent
66e25247d8
commit
9a1c2e1f0b
3 changed files with 5 additions and 5 deletions
|
|
@ -35,7 +35,7 @@ which is compatible with python packaging software
|
|||
:alt: MIT License
|
||||
|
||||
.. |pypi| image:: https://img.shields.io/pypi/v/pycalver.svg
|
||||
:target: https://pypi.python.org/pypi/pycalver
|
||||
:target: https://github.com/mbarkhau/pycalver/blob/master/CHANGELOG.rst
|
||||
:alt: PyPI Version
|
||||
|
||||
.. |version| image:: https://img.shields.io/badge/CalVer-v201809.0002--beta-blue.svg
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
set -v
|
||||
|
||||
if [[ $(which python3.7) ]]; then
|
||||
python3.7 --version
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
set -v
|
||||
|
||||
rst2html5 --strict README.rst > /dev/null
|
||||
rst2html5 --strict CHANGELOG.rst > /dev/null
|
||||
|
|
@ -12,12 +13,10 @@ python -m pytest --cov=pycalver test/
|
|||
if [[ $(python -c "import sys;print(sys.version[:3])") == "3.7" ]]; then
|
||||
python -m flake8 src/pycalver/
|
||||
|
||||
MYPYPATH=stubs/
|
||||
python -m mypy src/pycalver/
|
||||
MYPYPATH=stubs/ python -m mypy src/pycalver/;
|
||||
|
||||
# next test module from src/
|
||||
PYTHONPATH=src/:$PYTHONPATH
|
||||
python -m pytest --cov=pycalver test/
|
||||
PYTHONPATH=src/:$PYTHONPATH python -m pytest --cov=pycalver test/;
|
||||
fi
|
||||
|
||||
codecov
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue