forked from savon-noir/python-libnmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
28 lines (26 loc) · 714 Bytes
/
.travis.yml
File metadata and controls
28 lines (26 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
language: python
python:
# - "2.5" Not needed EL can use epel to upgrade to 2.6
- "2.6"
- "2.7"
# - "3.2" Not ready yet
# command to install dependencies
env:
- MONGO_VERSION=1.2.12
- MONGO_VERSION=1.3.2
- MONGO_VERSION=1.3.7
- MONGO_VERSION=2.4.3
services: mongodb
install:
- "pip install pep8 --use-mirrors"
- "pip install pyflakes --use-mirrors"
- "pip install boto --use-mirrors"
- "pip install pymongo sqlalchemy MySQL-python --use-mirrors"
- "python setup.py install"
# - "pip install -r requirements.txt --use-mirrors"
# # command to run tests
before_script:
- "pep8 . --exclude test,docs,examples"
- "pyflakes ."
- mysql -e 'create database poulet;'
script: nosetests