mirror of
https://github.com/laurivosandi/certidude
synced 2024-11-04 20:38:12 +00:00
27 lines
927 B
YAML
27 lines
927 B
YAML
sudo: required
|
|
language: generic
|
|
dist: trusty
|
|
env:
|
|
- COVERAGE_FILE=/tmp/.coverage
|
|
after_success:
|
|
- codecov
|
|
script:
|
|
- sudo apt install software-properties-common python3-setuptools python3-mysql.connector python3-pyxattr
|
|
- sudo mkdir -p /etc/systemd/system # Until Travis is stuck with 14.04
|
|
- sudo easy_install3 pip
|
|
- sudo pip3 install -r requirements.txt
|
|
- sudo pip3 install codecov pytest-cov requests-kerberos
|
|
- sudo pip3 install -e .
|
|
- echo ca | sudo tee /etc/hostname
|
|
- echo 127.0.0.1 localhost | sudo tee /etc/hosts
|
|
- echo 127.0.1.1 ca.example.lan ca | sudo tee -a /etc/hosts
|
|
- sudo hostname -F /etc/hostname
|
|
- sudo find /home/ -type d -exec chmod 755 {} \; # Allow certidude serve to read templates
|
|
- sudo coverage run --parallel-mode --source certidude -m py.test tests
|
|
- sudo coverage combine
|
|
- sudo coverage report
|
|
- sudo coverage xml -i
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|