mirror of
https://github.com/bspeice/metrik
synced 2024-11-04 22:48:11 -05:00
17 lines
419 B
YAML
17 lines
419 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
|
|
services:
|
|
- mongodb
|
|
|
|
before_install:
|
|
- export TZ=America/New_York
|
|
# Encrypted .metrik.enc file contains credentials for services that are behind OAuth, etc.
|
|
- openssl aes-256-cbc -K $encrypted_4cca49abdb96_key -iv $encrypted_4cca49abdb96_iv -in .metrik.enc -out ~/.metrik -d
|
|
|
|
install: pip install -r requirements.txt
|
|
script: python setup.py test |