grim/pyparser

Update the homepage url
draft default tip
2020-04-27, Gary Kramlich
d76ddcc8421a
Update the homepage url
# vi:et:ts=2 sw=2 sts=2
image: python:3
pipelines:
default:
- step:
script:
- set -ex
- find . -type f -iname "*.pyc" -exec rm -f {} \; || true
- find . -type d -iname __pycache__ -exec rm -rf {} \; || true
- pip install -r dev-requirements.txt
- flake8
- PYTHONPATH=$(pwd)/src py.test --color=auto --cov=pyparser --cov-report=term-missing tests
- pip install .