-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
31 lines (26 loc) · 944 Bytes
/
.travis.yml
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
29
30
31
#title :travis.yml
#description :This script will communicate with travis CI
#author :Ajay Krishna Teja Kavuri
#date :20160211
#version :1.0
#==============================================================================
# Select the project language
language: python
#==============================================================================
# Select the project language
python:
- "2.7"
#==============================================================================
# Cache
cache: pip
#==============================================================================
# Commands to run before the testing
before_script:
# Install dependencies
- pip install -r requirements.txt
#==============================================================================
# Run the actual test
script:
# trigger unit testing for users data
- python data/users/*Test.py
- python data/src/*Test.py