PyHCL/.travis.yml

15 lines
257 B
YAML

language: python
python:
- "3.6"
- "3.7"
- "3.8"
# command to install dependencies
install:
- pip install -r requirements.txt
# command to run tests
script:
- flake8 .
- python setup.py install
- python setup.py test
after_success:
- codecov