bumper/.travis.yml
Brian Martin 422a28cd8d fix tests
fix tests broken by lack of certs
- pytest.ini provides environment variables that load tests/test_certs
2019-06-07 02:00:42 -04:00

15 lines
No EOL
315 B
YAML

language: python
# Enable python 3.7 without globally enabling sudo and dist: xenial for other build jobs
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
install:
- pip install pipenv
- pipenv install --dev
script: pipenv run python -m pytest --cov=./ tests
after_success:
- codecov