mirror of
https://github.com/laurivosandi/certidude
synced 2024-11-05 04:48:12 +00:00
32 lines
909 B
YAML
32 lines
909 B
YAML
sudo: required
|
|
language: python
|
|
dist: trusty
|
|
python:
|
|
- "2.7"
|
|
after_success:
|
|
- codecov
|
|
virtualenv:
|
|
system_site_packages: true
|
|
install:
|
|
- echo "127.0.0.1 localhost" | sudo tee /etc/hosts
|
|
- echo "127.0.1.1 ca.example.lan ca" | sudo tee -a /etc/hosts
|
|
- echo "127.0.0.1 vpn.koodur.lan" | sudo tee -a /etc/hosts
|
|
- sudo mkdir -p /etc/systemd/system
|
|
- sudo pip install -r requirements.txt
|
|
- sudo pip install codecov pytest-cov
|
|
- sudo pip install -e .
|
|
script:
|
|
- sudo find /home/ -type d -exec chmod 755 {} \;
|
|
- sudo useradd adminbot -G sudo -p '$1$PBkf5waA$n9EV6WJ7PS6lyGWkgeTPf1'
|
|
- sudo useradd userbot -G users -p '$1$PBkf5waA$n9EV6WJ7PS6lyGWkgeTPf1'
|
|
- sudo adduser --system --no-create-home --group certidude
|
|
- sudo py.test -s -v --cov-report xml --cov=certidude tests/
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
addons:
|
|
hostname: ca
|
|
apt:
|
|
packages:
|
|
- python-configparser
|